Go to file
tobaloidee ccf50e5893 New Logo (#26)
* New Logo

SVG and PNG files included

* Updated with new Logo

* Delete HUGO-CODER logotype B.svg

* Delete HUGO CODER FAVICON-01.png

* Delete HUGO-CODER logotype B.png

* Delete HUGO-CODER logotype A.svg

* Delete HUGO-CODER logotype A.png

* Delete HUGO-CODER logomark.png

* Delete HUGO CODER FAVICON.svg

* Create new logo

* Delete new logo

* Create new logo

* logo files 

png & svg

* Delete hugo-coder-logotype a.png

* Delete hugo-coder-logotype a.svg

* Delete hugo-coder-logotype b.png

* Delete hugo-coder-logotype b.svg

* Add files via upload

* Delete new logo

* Delete hugo-coder-favicon.png

* Delete hugo-coder-favicon.svg

* Delete hugo-coder-logomark.png

* Delete hugo-coder-logotype-a.png

* Delete hugo-coder-logotype-a.svg

* Delete hugo-coder-logotype-b.png

* Delete hugo-coder-logotype-b.svg

* Create logo

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* Update README.md
2018-05-27 15:49:12 -03:00
archetypes Fix links and content type 2018-03-08 16:48:46 -03:00
exampleSite Ability to add extra custom CSS (#22) 2018-05-14 09:51:23 -03:00
images Initial files 2018-02-28 22:38:59 -03:00
layouts Ability to add extra custom CSS (#22) 2018-05-14 09:51:23 -03:00
static New Logo (#26) 2018-05-27 15:49:12 -03:00
.editorconfig Add Makefile to build CSS 2018-03-23 16:49:06 -03:00
.gitignore Disqus support, exampleSite preview through make commando (#16) 2018-05-01 15:59:02 -03:00
LICENSE.md Initial files 2018-02-28 22:38:59 -03:00
Makefile Typo fixed that crashes the demo build (#23) 2018-05-21 14:02:16 -03:00
README.md Update footer to be optional (#20) 2018-05-09 21:06:16 -03:00
theme.toml Fix links and content type 2018-03-08 16:48:46 -03:00

README.md

hugo-coder

A simple and clean blog theme for Hugo.

How to use this theme

To use hugo-coder go through the following steps.

Download

Clone this repository into your Hugo project.

git clone https://github.com/luizdepra/hugo-coder.git themes/coder

Configuration

Add the following lines to your config.toml.

theme = "coder" # set the theme

[params] # theme parameters
    author = "John Doe" # author's name
    info = "Full Stack DevOps and Magician" # author's job title or info
    description = "John Doe's personal website" # site description
    keywords = "blog,developer,personal" # site keywords

    # wether you want to hide copyright and credits in the footer
    hideCredits = false
    hideCopyright = false
    
# Social links
[[params.social]]
    name = "Github"
    weight = 1
    url = "https://github.com/johndoe/"
[[params.social]]
    name = "Twitter"
    weight = 2
    url = "https://twitter.com/johndoe/"
[[params.social]]
    name = "LinkedIn"
    weight = 3
    url = "https://www.linkedin.com/in/johndoe/"

# Menu links
[[menu.main]]
    name = "Blog"
    weight = 1
    url  = "/posts/"
[[menu.main]]
    name = "About"
    weight = 2
    url = "/about/"

You can look at full working config.toml inside the exampleSite folder.

Build & Test

To update or generate the minified CSS file:

make build

To build your site and test, run:

hugo server

To preview the exampleSite, run

make demo

The above command copies current state of the theme to exampleSite/themes and starts hugo with hugo serve -D (Go does not support Symlink directories)

Disqus

Add the following line to your config, disqusShortname = "yourdiscussshortname" When this is set, all posts are disqus enabled
You can disable comments for a post by adding the following to your page meta data. disable_comments: true

To Do

  • Tags, Categories and Series

License

Coder is licensed under the MIT license.

Author

Luiz de Prá

Special Thanks

  • Gleen McComb, for his great article about custom pagination.
  • All contributors, for every PR and Issue reported.