Creating Your Own Themes

Theme Package Structure

Themes are essentially a folder with a manifest and a collection of templates and supporting static files (images, CSS, Javascript, etc.). Custom themes should be put in a themes folder within the site’s root. You can put themes elsewhere by specifying the THEME_DIRS setting.

A sample theme folder might look like this:

/theme_id
    - metadata.yaml
    /static
        /scripts
            - script.js
            - ...
        /stylesheets
            - theme.less
            - reset.css
            - ...
    /templates
        /theme
           /layouts
                - ...
            - _footer.html
            - base.html
            - post_list.html
            - ...

Theme Manifest

Each theme must contain a file called metadata.yaml that contains metadata about the theme. The theme manifest is a simple text file in YAML format. The Dark Rainbow theme manifest looks like this, for example:

name: 'Dark Rainbow'
id: 'dark_rainbow'
description: 'A dark theme with just a hint of color.'
author: 'Tyler Butler <tyler@tylerbutler.com>'
website: 'http://tylerbutler.com'
license: 'Creative Commons BY-SA 3.0'
use_foundation: yes
use_jquery: yes
use_lesscss: yes
use_modernizr: no
use_normalize_css: no

template_dirs:
  - '../_shared/templates/'

copy_content:
  - ['../_shared/images/rss/37.png', 'images/rss.png']
  - ['../_shared/less/', 'stylesheets/shared/']
  - ['../_shared/code_styles/_solarized.less', 'stylesheets/shared/_solarized.less']

settings:
  typekit_id: ~
  comments: ~
  comments_account: ~
  simple_search: yes

Theme Manifest Parameters

name
The verbose human-readable name of the theme.
id
The ID of the theme. This must match the folder name of the theme and should not contain spaces. This is used internally by Engineer to identify the theme.
self_contained (optional)

Indicates whether the theme is self-contained or not. Defaults to True if not specified.

Note

This parameter is not currently used and may be deprecated in the future.

description (optional)
A more verbose description of the theme.
author (optional)
The name and/or email address of the theme’s author.
website (optional)
The website where the theme or information about it can be found.
license (optional)
The license under which the theme is made available.
use_precompiled_styles (optional)

Indicates whether to use precompiled stylesheets. Defaults to True.

New in version 0.5.0.

use_foundation (optional)
Indicates whether the theme makes use of the Foundation CSS library included in Engineer. Defaults to False.
use_jquery (optional)
Indicates whether the theme makes use of the jQuery library included in Engineer. Defaults to False.
use_lesscss (optional)
Indicates whether the theme makes use of the LESS CSS library included in Engineer. Defaults to False.
use_modernizr (optional)

Indicates whether the theme makes use of the Modernizr library included in Engineer. Defaults to True.

Changed in version 0.5.0: This setting now defaults to True instead of False.

use_normalize_css (optional)

Indicates whether the theme makes use of the normalize.css file included in Engineer. Defaults to True.

New in version 0.5.0.

use_tweet (optional)

Indicates whether the theme makes use of the Tweet library included in Engineer. Defaults to False.

Deprecated since version 0.5.0: This setting is obsolete and ignored. The Tweet library has been removed from Engineer. See the Release Notes for more information.

settings (optional)

A dictionary of all the themes-specific settings that users of your theme can provide via THEME_SETTINGS and their default values. If your theme supports custom settings, you must specify defaults. Due to the way Engineer loads your theme settings and a user’s site settings, your settings may not be created at all unless you specify them here.

New in version 0.2.3.

template_dirs (optional)

A list of paths, each relative to the path to the theme manifest file itself, that should be included when searching for theme templates. These paths are in addition to the templates folder within the theme’s folder itself, and will be searched in the order specified after the theme’s templates folder.

Like copy_content, this parameter is useful if you are creating multiple themes that share common templates. You can specify the paths to the common templates and they will be available during the build process.

template_dirs:
  - '../_shared/templates/'

New in version 0.4.0.

copy_content (optional)

A list of paths to files or directories that should be copied to the theme’s output location during a build. This is useful if you are creating multiple themes that all share some common static content (JavaScript files, images, etc.). By specifying this parameter, content will be copied to a central location for you during the build process so you can include it in your theme templates, LESS files, etc.

This parameter should be a ‘list of lists.’ Each entry in the list is a list itself containing two items. The first item is the path to the file or folder that should be copied. This path should be relative to the location of the theme manifest.

The second parameter should be the target location for the file or folder. The target path should be relative to the static/theme folder in the output folder.

For example, consider the following copy_content parameter in a theme manifest:

copy_content:
  - ['../Font-Awesome-More/font', 'font']
  - ['../bootswatch/img/', 'img']
  - ['../bootstrap/js/', 'js']

In this example, the ../Font-Awesome-More/font (a path relative to the location of the theme manifest file itself) will be copied to static/theme/font.

New in version 0.4.0.

Theme Stylesheets

CSS

You will likely have CSS stylesheets you wish to include in your theme. Including these is as simple as linking to them in your theme templates.

LESS

In addition to CSS, Engineer can automatically compile LESS stylesheets during a site build, so you are free to use LESS rather than CSS for your styles. When linking to your LESS stylesheet in your templates, you should use the render_less_link macro. This will ensure that the stylesheet is compiled as part of the site build process if needed.

Starting with Engineer 0.5.0, themes can include a ‘precompiled’ version of the LESS stylesheets they need. This is useful since in most cases users of your theme will not be making modifications to your LESS files. Thus, referencing a pre-built version of the stylesheet makes for faster builds.

In order to include a precompiled version of your stylesheets, simply add it alongside your regular stylesheet and append _precompiled to the name. For example, if your stylesheet is called dark_rainbow.less, then your precompiled version should be called dark_rainbow_precompiled.css. As long as you are referencing your stylesheet from your templates using the render_less_link macro, the precompiled version will automatically be picked up during a site build. No other changes are needed.

Required Templates

The following templates must be present in a theme’s templates/theme folder:

  • _single_post.html
  • base.html
  • post_archives.html
  • post_detail.html
  • post_list.html
  • template_page_base.html

You can of course include additional templates or template fragments, for use either internally in your theme, or that users of your theme can take advantage of to further customize their site.

You should also ensure that your theme templates load the Built-in Template Fragments that Engineer users will expect.

Images

The built-in img tag will output content using a template fragment at templates/theme/_img.html. Individual themes can override this output by providing their own custom template.

The template is always passed the following keyword variables:

  • source
  • classes
  • width
  • height
  • title
  • alt
  • link

All except the source parameter are optional so the template should handle these cases appropriately. The default template looks like this:

{% if title %}
    <div class="image caption{% if classes %} {{ classes|join(' ') }}{% endif %}">
{% else %}
    <div class="image{% if classes %} {{ classes|join(' ') }}{% endif %}">
{% endif %}

{% if link %}
    <a href="{{ link }}"><img src="{{ source|trim }}"
                              {%- if width %} width="{{ width|trim }}"{%- endif %}
                              {%- if height %} height="{{ height|trim }}"{%- endif %}
                              {%- if alt %} alt="{{ alt|trim }}"{%- endif %}
                              {%- if title %} title="{{ title|trim }}"{%- endif %}/>
    </a>
{% else %}
    <img src="{{ source|trim }}"
         {%- if width %} width="{{ width|trim }}"{%- endif %}
         {%- if height %} height="{{ height|trim }}"{%- endif %}
         {%- if alt %} alt="{{ alt|trim }}"{%- endif %}
         {%- if title %} title="{{ title|trim }}"{%- endif %}/>
{% endif %}

{% if title %}
    <p>{{ title }}</p>
{% endif %}

</div>

See also

Including Images

New in version 0.5.0.

Sitemap Templates

Themes can provide custom templates for sitemap, just as individual sites can. These templates should be in the theme’s templates/theme folder.

New in version 0.3.0.

Referring to Custom Theme Settings in Templates

Custom theme settings are available in all Engineer templates. Every template is passed a context variable called theme that represents the current theme. Any custom settings specified are available as attributes on that object. For example, if your theme defines a custom setting called typekit_id, then you can refer to that setting in any Engineer template like so:

{# TYPEKIT #}
<script type="text/javascript"
       src="http://use.typekit.com/{{ theme.typekit_id }}.js"></script>
<script type="text/javascript">
   try {
       Typekit.load();
   } catch (e) {}
</script>

Useful Macros

TODO

Zipping Themes

You can optionally put your theme directory in a zip file. The file should have a .zip file extension. Engineer will unzip the folder to a temporary location during a build and load the theme from that temporary location.

New in version 0.2.3.

Sharing Your Theme

The simplest way to share your theme is to zip it up and make it available to download. Users can then download it and use it by placing it in their site’s themes directory or in another one of their THEME_DIRS.

You may wish instead to deliver your theme as an installable Python package. This allows users to download and install your theme via pip or any other tool. See Theme Plugins for more details.

Add Your Theme to Engineer

If you’d like to make your theme available with the main Engineer application, send a pull request on github.