Theming - nshebang/nob GitHub Wiki

Nob does not have a theming system. This is a feature. You can freely link any CSS stylesheet you want to your blog HTML files. To do this, go to your templates directory, edit index.html and post.html, and add a <link> tag to link a stylesheet:

...
<head>
<meta charset="utf-8">

<link rel="stylesheet" href="my_theme.css">

<title>...</title>
</head>
...

Please note that the CSS stylesheet file(s) should be placed in the root directory of your blog, NOT in the templates directory:

📁 <your blog root directory>
|_ 📁 .nob
|  |_ 📁 entries
|  |_ 📁 templates
|     |_ 📄 index.html ← edit this one
|     |_ 📄 post.html ← and this one, too
|     |_ 📄 rss.xml
|     |_ 📄 my_blog_link.txt
|_ 📄 my_theme.css ← the stylesheet should be placed here!
|_ 📄 index.html
|_ 📄 a_post.html
|_ 📄 another_post.html
⚠️ **GitHub.com Fallback** ⚠️