.. title: Creating a Theme .. slug: creating-a-theme .. date: 2012-03-13 12:00:00 UTC-03:00 .. tags: .. link: .. description: Creating A Theme From Scratch (Almost) ====================================== .. class:: lead There is some documentation about creating themes for Nikola, but maybe a tutorial is also a useful way to explain it. So, here it is. I'll explain how to create a theme (almost) from scratch. All themes in Nikola must inherit from the ``base`` theme. In this case, we will inherit from ``bootstrap`` so we get good support for slides and galleries. I will try to create a theme that looks like `Vinicius Massuchetto's Monospace Theme `_. .. TEASER_END Starting The Theme ------------------ First we will create a testing site:: $ nikola init --demo monospace-site A new site with some sample data has been created at monospace-site. See README.txt in that folder for more information. $ cd monospace-site/ Our theme will inherit from the ``bootstrap`` theme, which is full-featured but boring. :: $ mkdir themes $ mkdir themes/monospace $ echo bootstrap > themes/monospace/parent The next step is to make the testing site use this new theme, by editing ``conf.py`` and changing the ``THEME`` option:: # Name of the theme to use. Themes are located in themes/theme_name THEME = 'monospace' Now we can already build and test the site:: $ nikola build && nikola serve .. figure:: http://ralsina.com.ar/galleries/monospace-tut/monospace-1.png :height: 400px This is the default "bootstrap" theme. Of course, the page layout is completely different from what we want. To fix that, we need to get into templates. Templates: Page Layout ---------------------- The general page layout for the theme is done by the ``base.tmpl`` template, which is done using `Mako `_. This is bootstrap's ``base.tmpl``, it's not very big: .. code-block:: mako ## -*- coding: utf-8 -*- <%namespace name="base" file="base_helper.tmpl" import="*" /> <%namespace name="bootstrap" file="bootstrap_helper.tmpl" import="*" /> ${set_locale(lang)} ${bootstrap.html_head()} <%block name="extra_head"> ${extra_head_data}
<%block name="content">
${content_footer}
${bootstrap.late_load_js()} ${base.html_social()} <%block name="extra_js"> ${body_end} It's basically a HTML document with some placeholders to be replaced with actual content, configuration options, and some helper functions. For example, the ``html_head`` helper can be used to add CSS or JS files in all document's ``head`` tags. Monospace is a two-column-with-footer layout, so let's copy the basics from its HTML and see what happens: .. code-block:: mako ## -*- coding: utf-8 -*- <%namespace name="base" file="base_helper.tmpl" import="*"/> <%namespace name="bootstrap" file="bootstrap_helper.tmpl" import="*" /> ${set_locale(lang)} ${bootstrap.html_head()} <%block name="extra_head"> ${extra_head_data}
<%block name="content">
${bootstrap.late_load_js()} <%block name="extra_js"> ${body_end} .. figure:: http://ralsina.com.ar/galleries/monospace-tut/monospace-2.png Yikes! This will get better quickly once we add some CSS Base CSS -------- The orphan theme includes just a little styling, specifically ``rest.css`` so the reStructuredText output looks reasonable, and ``code.css`` for code snippets. It also includes an empty ``assets/css/theme.css`` where you can add your own CSS. For example, this is taken from the original monospace theme, except for the last few selectors: .. code-block:: css body { margin:0px; padding:20px 0px; text-align:center; font-family:Monospace; color:#585858; } .post { margin:0px 0px 30px 0px; padding:0px 0px 30px 0px; border-bottom:1px dotted #C8C8C8; } .meta { margin:10px; padding:15px; background:#EAEAEA; clear:both; } #footer { text-align:center; clear:both; margin:30px 0px 0px 0px; padding:30px 0px 0px 0px; border-top:1px dotted #C8C8C8; } #wrap { margin:0px auto; text-align:left; font-size: 13px; line-height: 1.4; } #container { float:right; } #sidebar { overflow:hidden; clear:left; text-align:right; width:250px; height:auto; padding:0px 15px 0px 0px; border-right:1px dotted #C8C8C8; } #sidebar li { list-style-type:none; } #sidebar > li { margin:20px 0px; } #sidebar h1 { border-bottom:1px dotted #C8C8C8; } #sidebar .description { display:block; width:100%; height:auto; margin:0px 0px 10px 0px; } h1, h2, h3, h4, h5, h6, h7 { margin:0px; text-transform:uppercase; } h4, h5, h6 { font-size:14px; } #blog-title { margin-top: 0; line-height:48px;} .literal-block {padding: .5em;} div.sidebar, div.admonition, div.attention, div.caution, div.danger, div.error, div.hint, div.important, div.note, div.tip, div.warning { /* Issue 277 */ border: 1px solid #aaa; border-radius: 5px; width: 100%; } ul.breadcrumb > li:before { content: " / "; } This will (after we rebuild it) make the site looks different of course, and getting closer to our goal: .. figure:: http://ralsina.com.ar/galleries/monospace-tut/monospace-3.png :height: 400px Monospaced allright. If you compare it to `the original `_, however, you will see that the layout of the posts themselves is different, and that was not described in ``base.tmpl`` at all. But if you look, you'll see that there is a placeholder called content: ``<%block name="content">`` That's because ``base.tmpl`` defines the *base* layout. The layout of more specific pages, like "the page that shows a list of posts" is defined in the other templates. Specifically, this is defined in ``index.tmpl``. It turns out ``bootstrap`` doesn' have one of those! That's because it inherits that template from ``base``: .. code-block:: mako ## -*- coding: utf-8 -*- <%namespace name="helper" file="index_helper.tmpl"/> <%namespace name="comments" file="comments_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="content"> % for post in posts:

${post.title()}    ${messages("Posted")}:


${post.text(teaser_only=index_teasers)} % if not post.meta('nocomments'): ${comments.comment_link(post.permalink(), post.base_path)} % endif
% endfor ${helper.html_pager()} ${comments.comment_link_script()} ${helper.mathjax_script(posts)} So, let's tweak that to be closer to the original. We put the post's metadata in a box, add links for the posts tags, move the date there, etc. .. code-block:: mako ## -*- coding: utf-8 -*- <%namespace name="helper" file="index_helper.tmpl"/> <%namespace name="disqus" file="disqus_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="content"> % for post in posts:

${post.title()}

${messages("Posted")}: ${post.formatted_date(date_format)}
Tags:  %if post.tags: %for tag in post.tags: ${tag} %endfor %endif
${post.text(teaser_only=index_teasers)} % if not post.meta('nocomments'): ${disqus.html_disqus_link(post.permalink()+"#disqus_thread", post.base_path)} % endif
% endfor ${helper.html_pager()} ${disqus.html_disqus_script()} .. figure:: http://ralsina.com.ar/galleries/monospace-tut/monospace-4.png :height: 400px Close enough! Then if we click on the post title, we will see some broken details in the metadata that can be fixed in ``post.tmpl``, and so on. .. code-block:: mako ## -*- coding: utf-8 -*- <%namespace name="helper" file="post_helper.tmpl"/> <%namespace name="disqus" file="disqus_helper.tmpl"/> <%inherit file="base.tmpl"/> <%block name="extra_head"> ${helper.twitter_card_information(post)} % if post.meta('keywords'): % endif <%block name="content">
${helper.html_title()}
${messages("Posted")}: ${post.formatted_date(date_format)} % if not post.meta('password'): [${messages("Source")}] % endif
%if post.tags: ${messages("Tags")}:  %for tag in post.tags: ${tag} %endfor
%endif ${helper.html_translations(post)}
${post.text()} ${helper.html_pager(post)} % if not post.meta('nocomments'): ${disqus.html_disqus(post.permalink(absolute=True), post.title(), post.base_path)} % endif
.. figure:: http://ralsina.com.ar/galleries/monospace-tut/monospace-5.png :height: 400px Details, details. The demo site exercises most of the features in Nikola, so if you make it look good, your site probably will look good too. This monospace theme is included with nikola, if you want to use it or play with it.