nodejh/hugo-theme-mini

Really love this theme

wellzen opened this issue · 11 comments

I am a real Hugo newbie and have been really enjoying setting up a blog using this theme. I have a really dumb question, hopefully someone will be willing to take a moment to answer it: I can't figure out how to change to the appearance in my site to what is seen in the example front page which shows both the subject line and a bit of sample text, whereas the default has a really big font for the list of posts and no text; even just being able to reduce the default font size would be great! Thanks for your patience :-)

Try setting enableSummary = true in your config file.

Could you provide some screenshot of your site? Or email to me(jianghangscu@gmail.com) with the your site folder, then let me have a look?

I guess it's because the useDescriptionReplaceSummary is true, but there is no description in your .md files' front matter . Maybe you can try to set useDescriptionReplaceSummary = false.

Looks like no problem. Could you send me your hugo folder?

I got the file and found the trouble. Because there is some syntax error in config.toml file.

Change your config.toml file to below. Pay attention to the params character. The values nested under params are properties of pramas.

baseURL = "http://conflictmatters.nz/"
languageCode = "en-us"
title = "Conflict Matters"
theme = "cactus-plus"
staticDir = ["static","about"]

[params]
  author = "William Hursthouse"
  description = "Conflict matters is an occassional blog providing tips onn dealing with conflict in relationships of all kinds, including at home and at work"
  enableToc = true
  enableRSS = true
  enableSummary = true
  useDescriptionReplaceSummary = true
  showLatestPosts = true
  enableGoogleAnalytics = true

image

The example config file is https://github.com/nodejh/hugo-theme-cactus-plus/blob/master/exampleSite/config.toml

I'm glad to help you solve the problem! I also really like the picture and I very much agree with your description, it is a poster named The Future.

If you want to use "activate" the "subscribe" button, just the set enableRSS = true.