You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
3.8 KiB

9 years ago
8 years ago
9 years ago
9 years ago
8 years ago
  1. # Cactus Theme
  2. Cactus is a minimalistic theme for bloggers based on the default theme of the same-named [Cactus static site generator](//github.com/koenbok/Cactus) written in Python and [Nick Balestra](//github.com/nickbalestra/kactus)'s Jekyll port. Noteworthy features of this Hugo theme are the integration of a comment-system powered by Disqus, a customizable about page, support for RSS feeds, syntax highlighting for source code and sharing options for blog posts.
  3. ![Screenshot](https://raw.githubusercontent.com/digitalcraftsman/hugo-cactus-theme/dev/images/screenshot.png)
  4. ## Installation
  5. Inside the folder of your Hugo site run:
  6. $ cd themes
  7. $ git clone https://github.com/digitalcraftsman/hugo-cactus-theme.git
  8. For more information read the official [setup guide](//gohugo.io/overview/installing/) of Hugo.
  9. ### The config file
  10. Take a look inside the [`exampleSite`](//github.com/digitalcraftsman/hugo-cactus-theme/tree/dev/exampleSite) folder of this theme. You'll find a file called [`config.toml`](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/exampleSite/config.toml).
  11. To use it, copy the [`config.toml`](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/exampleSite/config.toml) in the root folder of your Hugo site. Feel free to change strings as you like to customize your website.
  12. Make sure to update the `themesDir` property in the config file to point to your site's theme folder otherwise an error will be thrown indicating the themes folder is unable to be found.
  13. ## About page
  14. Use the about page to introduce yourself to your visitors. You can customize the content as you like in the [`config.toml`](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/exampleSite/config.toml). Furthermore, you should replace the [avatar placeholder](//github.com/digitalcraftsman/hugo-cactus-theme/blob/master/static/images/avatar.png) with a great image of yourself.
  15. ## Hide pages
  16. Pages can be hidden and don't appear in the post list on the homepage if you add the variable `hidden = true` to the frontmatter. This allows you to link from elsewhere, i.e. just the menu.
  17. ## Disqus
  18. This theme features a comment system powered by Disqus too. Just add your Disqus-shortname to the [`config.toml`](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/exampleSite/config.toml) and let readers respond to your blog posts.
  19. ## Social link icons
  20. You can add a social link panel in the footer by adding entries to the `social` block in the [`config.toml`](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/exampleSite/config.toml). You can choose between two icon fonts:
  21. - [Font awesome](https://fortawesome.github.io/Font-Awesome/) or
  22. - [Mono social icons](https://github.com/drinchev/monosocialiconsfont)
  23. Assign either `font-awesome` or `mono-social` to the `iconFont` variable. The Mono social icons offer three styles of icons: -circle, rounded, or default (empty).
  24. ## Nearly finished
  25. In order to see your site in action, run Hugo's built-in local server.
  26. $ hugo server
  27. Now enter [`localhost:1313`](http://localhost:1313) in the address bar of your browser.
  28. ## Contributing
  29. Did you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](//github.com/digitalcraftsman/hugo-cactus-theme/issues) to let me know. Or make directly a [pull request](//github.com/digitalcraftsman/hugo-cactus-theme/pulls).
  30. Please create a separate branch for your pull request.
  31. ## License
  32. This theme is released under the MIT license. For more information read the [license](//github.com/digitalcraftsman/hugo-cactus-theme/blob/dev/LICENSE.md).
  33. ## Acknowledgements
  34. Thanks to
  35. - [Nick Balestra](//github.com/nickbalestra/kactus) for creating the original theme
  36. - [Steve Francia](//github.com/spf13) for creating Hugo and the awesome community around the project.