Minimal theme based on the Rocinante theme.
A simple responsive blog theme with minimal non-essential components.
- Pagination
- Tags support
- Mobile support
- RSS Feeds
- No essential Javascript
Inside the folder of your Hugo site run:
git submodule add https://github.com/dominiwe/hugo-dw-blog.git themes/dw-blog
For more information read the official setup guide of Hugo.
After installing the theme successfully it requires a just a few more steps to get your site running.
Example:
baseURL = "https://example.com/"
languageCode = "en-us"
title = "Mysite"
theme = "dw-blog"
paginate = 3
[markup]
[markup.highlight]
style = "monokailight"
[markup.goldmark.renderer]
unsafe= true
[params]
favicon = "/icons/favicon.png"
mainSections = ["posts", "photos"]
email = "mail@example.com"
about = """
About section. Enter details about you here.
"""
[[params.links]]
[[params.links.link]]
name = "Resume"
href = "/Resume.pdf"
[[params.links.link]]
name = "Email"
href = "/contact"
smart_email_link = true
[[params.links]]
[[params.links.link]]
name = "Github"
href = "https://github.com/"
new_tab = true
[[params.links.link]]
name = "Mastodon"
href = "https://mastodon.social/"
new_tab = true
[[params.links.link]]
name = "Twitter"
href = "https://twitter.com/"
new_tab = true
[[params.links.link]]
name = "Instagram"
href = "https://instagram.com/"
new_tab = trueIn order to see your site in action, run Hugo's built-in local server.
$ hugo server
Now enter localhost:1313 in the address bar of your browser.
If you find a bug or have an idea for a feature, feel free to write an issue.
MIT