2024-11-12 17:51:12 -08:00
|
|
|
{% 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") }}
|
2025-01-14 13:30:34 -08:00
|
|
|
{{ self::docLink(text="webdog html", href="webdog-html") }}
|
2024-11-12 17:51:12 -08:00
|
|
|
{{ 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 %}
|