webdog 0.1.4

static site generator fit for a dog
Documentation
{% extends "base.tera" %}

{% macro docLink(text, href, first=false) %}
{% if not first %}• {% endif %}
<a href="/docs/{{href}}">{{ text }}</a>
{% endmacro docLink %}

{% block content %}
<div class="docs-links">
	{{ self::docLink(text="docs", href="", first=true) }}
	{{ self::docLink(text="commands", href="commands") }}
	{{ self::docLink(text="configuration", href="config") }}
	{{ self::docLink(text="pages", href="pages") }}
	{{ self::docLink(text="templates", href="templates") }}
	{{ self::docLink(text="webdog html", href="webdog-html") }}
	{{ self::docLink(text="styling", href="styling") }}
	{{ self::docLink(text="resources", href="resources") }}
	{{ self::docLink(text="webdog assumptions", href="wd-assumptions") }}
</div>
{{ page | safe }}
{% endblock precontent %}