mirror of
https://github.com/zyllian/webdog.git
synced 2025-01-18 03:32:21 -08:00
zyl
1d502881f6
Some checks are pending
Build Site / build (push) Waiting to run
Build Site / deploy (push) Blocked by required conditions
21 lines
787 B
Text
21 lines
787 B
Text
{% 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 %}
|