mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-07-08 21:25:02 +02:00
12 lines
556 B
HTML
12 lines
556 B
HTML
{% extends 'base-reference.html' %}
|
|
|
|
{% block title %}{% set j = joiner(' » ') %}{% for name, _ in compound.breadcrumb %}{{ j() }}{{ name }}{% endfor %} module | {{ 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">module</span>{% if compound.since %} {{ compound.since }}{% endif %}</h1>
|
|
{% endblock %}
|