mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-07-09 05:34:27 +02:00
15 lines
943 B
HTML
15 lines
943 B
HTML
{% extends 'base-reference.html' %}
|
|
|
|
{% block title %}{% set j = joiner('::') %}{% for name, _ in compound.breadcrumb %}{{ j() }}{{ name }}{% endfor %} namespace | {{ super() }}{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>
|
|
{%+ for name, target in compound.breadcrumb[:-1] %}<span class="m-breadcrumb"><a href="{{ target }}">{{ name }}</a>::<wbr/></span>{% endfor %}{{ compound.breadcrumb[-1][0] }} <span class="m-thin">namespace</span>{% if compound.is_inline %} <span class="m-label m-flat m-info">inline</span>{% endif %}{% if compound.since %} {{ compound.since }}{% endif %}
|
|
{# need an explicit space here otherwise the newline gets removed #}
|
|
|
|
{% if compound.include %}
|
|
<div class="m-doc-include m-code m-inverted m-text-right"><span class="cp">#include</span> <a class="cpf" href="{{ compound.include[1] }}">{{ compound.include[0] }}</a></div>
|
|
{% endif %}
|
|
</h1>
|
|
{% endblock %}
|