mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-07-08 21:25:02 +02:00
12 lines
594 B
HTML
12 lines
594 B
HTML
{% extends 'base-reference.html' %}
|
|
|
|
{% block title %}{% set j = joiner('/') %}{% for name, _ in compound.breadcrumb %}{{ j() }}{{ name }}{% endfor %} file | {{ 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-thin">file</span>{% if compound.since %} {{ compound.since }}{% endif %}
|
|
{# need an explicit space here otherwise the newline gets removed #}
|
|
|
|
</h1>
|
|
{% endblock %}
|