I’m trying to figure out how to make my own posts using the Minimo theme. I copied the example site layout given with the theme, and started editing my own stuff. However, if I make a new post titled “test”:
It does not show up in my recent feed, or anywhere on the generated website. I know this is a basic question but I’ve searched and not found a solution, so asking here. Thanks
razon
March 17, 2023, 2:24am
2
Just tested on the example site, works as expected.
But I saw you’ve modified a lot, is it just a date
issue? There may be few posts newer than the test
post.
Indeed I’ve removed everything that I thought I wouldn’t need. The katex_support.md file is unmodified from the theme’s example, and even that is not being generated. I have no other blog-post type posts. I modified the date to be today, still no luck. I can’t even search for the posts by tags. Here is my config file if that helps :
baseURL = "https://www.manas96.github.io"
title = "Manas Kale"
# for smart copyright line, leave this blank and check [params.copyright]
copyright = ""
theme = "minimo"
disqusShortname = ""
googleAnalytics = ""
Paginate = 50
preserveTaxonomyNames = true
enableRobotsTXT = true # generate robots.txt
# Syntax Highlighting ( https://gohugo.io/content-management/syntax-highlighting/ )
pygmentsCodefences = true
enableEmoji = true
# Missing translations will default to this content language
defaultContentLanguage = "en"
[params.info]
description = ""
title404 = "Nothing's here!"
[params.assets]
favicon = "favicon.ico"
customCSS = ["css/custom.css"]
customJS = ["js/custom.js"]
gopher = "" # used in 404 template ( Generator: https://gopherize.me )
[params.copyright]
prefix = "Content "
holder = "Manas Kale"
startYear = "2023"
suffix = ""
[params.settings]
# date & time format: https://golang.org/pkg/time/
dateFormat = "2006, Jan 02"
listDateFormat = "2006, Jan 02"
archiveDateFormat = "Jan 02"
hideEntryNavigation = ["page"] # boolean / array of sections
hideEntryMeta = ["page"] # boolean / array of sections
showReadingTime = true
showLastmod = true
taxonomyCloudShuffle = true
accentColor = "#ffcd00"
hideMainMenu = false
[params.sidebar]
enable = true
[params.widgets]
header = ["breadcrumbs"]
homepage = ["recent_posts"]
sidebar = ["about","search","sidebar_menu","taxonomy_cloud"]
footer = ["social_menu"]
[params.opengraph.facebook]
admins = [] # array of Facebook IDs
appID = ""
pageID = ""
[params.opengraph.twitter]
page = "" # Twitter page username
[params.seo]
# Title Separator: - – — · • * ⋆ | ~ « » < >
titleSeparator = "•"
[params.social]
#codepen = "MunifTanjim"
#email = "contact@example.com"
#facebook = "MunifTanjim"
github = "manas96"
#gitlab = "MunifTanjim"
instagram = "kale.manas"
linkedin = "manaskale"
#twitter = "MunifTanjim"
#telegram = "MunifTanjim"
#google_scholar = "qc6CJjYAAAAJ"
#youtube = "UCT-U0rNerYxItGcuoPX-WYA"
[params.comments]
enable = false
# Isso: https://posativ.org/isso/
[params.comments.isso]
enable = false
scriptSrc = "" # "https://isso.example.com/js/embed.min.js"
dataAttrs = "" # "data-isso='https://isso.example.com' data-isso-require-author='true'"
[params.comments.staticman]
enable = false
apiEndpoint = "https://api.staticman.net/v2/entry"
maxDepth = 2
username = "MunifTanjim"
repository = "minimo"
# Utterances: https://utteranc.es
[params.comments.utterances]
enable = false
issueTerm = "pathname" # pathname / url / title / og:title / <string>
label = ""
theme = "github-light"
[params.comments.utterances.github]
username = "MunifTanjim"
repository = "minimo"
[params.search]
client = "fuse" # algolia / fuse / lunr
[params.search.algolia]
appId = ""
indexName = ""
searchApiKey = ""
[taxonomies]
author = "authors"
category = "categories"
series = "series"
tag = "tags"
[permalinks]
page = "/:slug/"
# [[menu.main]]
# name = "Repo"
# weight = -10
# identifier = "repository"
# url = "https://github.com/MunifTanjim/minimo"
[blackfriday]
hrefTargetBlank = true
[languages]
# edit this block for your own language
[languages.en]
lang = "en"
languageName = "English"
weight = 1
Is there a log file that I can look into?
razon
March 17, 2023, 2:47am
4
Couldn’t reproduce it with your config, I suggest posting your public repo (include modifications) to reproduce the issue if possible.
Thanks for trying to help! Here is the hugo code that I am working with:
https://github.com/manas96/manas96.github.io/tree/error_demo/framework
razon
March 17, 2023, 2:05pm
6
Hi, the cause is that you’ve drafted the docs
section and the test
post.
Ahh I see! I did set draft:false in the test post but that didn’t work so I think I left it on true.
For docs, I thought that was the default draft value for any type of doc post.
Anyway, I completely missed all that, thanks a lot!
system
Closed
March 19, 2023, 2:19pm
8
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.