{% for path in config.extra_css %} {% endfor %} {% block extrahead %} {% endblock %} {% for path in config.extra_javascript %} {% endfor %} {% if config.google_analytics %} {% endif %}

This is an example theme for MkDocs.

It is designed to be read by looking at the theme HTML which is heavily commented. The easiest way to do that is by looking at the source on GitHub.. Otherwise this is just a demonstration that the theme is fully functional.


Documentation Navigation


Support for search


Next and previous links

{% if page.next_page or page.previous_page %}
{% if page.previous_page %} ← Previous Page {% else %} ← Previous Page {% endif %} - {% if page.next_page %} Next Page → {% else %} Next Page → {% endif %}
{% endif %}

Link to the source

{% if page and page.edit_url %} Edit on {{ config.repo_name }} {% elif config.repo_url %} {{ config.repo_name }} {% endif %}

Show the table of contents for the current page


{% block content %} {{ page.content }} {% endblock %}
Built with MkDocs.