mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-07-08 21:25:02 +02:00
12 lines
606 B
HTML
12 lines
606 B
HTML
{% extends 'base-reference.html' %}
|
|
|
|
{% block title %}{% for name, _ in compound.breadcrumb %}{{ name }}/{% endfor %} directory | {{ super() }}{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>
|
|
{%+ for name, target in compound.breadcrumb[:-1] %}<span class="m-breadcrumb"><a href="{{ target }}">{{ name }}</a>/</span>{% endfor %}{{ compound.breadcrumb[-1][0] }}<span class="m-breadcrumb">/</span> <span class="m-thin">directory</span>{% if compound.since %} {{ compound.since }}{% endif %}
|
|
{# need an explicit space here otherwise the newline gets removed #}
|
|
|
|
</h1>
|
|
{% endblock %}
|