mirror of
https://github.com/wassname/talk.git
synced 2026-08-17 11:27:52 +08:00
36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
<aside class="sidebar">
|
|
<a class="brand" href="{{ url_for("/") }}">
|
|
<h2>
|
|
{{ image_tag('images/logo.svg', {width: 50, height: 50}) }}
|
|
<span>Talk</span>
|
|
</h2>
|
|
</a>
|
|
<ul class="sidebar__list">
|
|
{% for item in config.sidebar.side %}
|
|
{% if item.url %}
|
|
<li class="sidebar__section{% if is_current(item.url) %} active toggled{% endif %}">
|
|
<a href="{{ url_for(item.url) }}" class="sidebar__header sidebar__header__link">{{ item.title }}</a>
|
|
</li>
|
|
{% else %}
|
|
<li class="sidebar__section{% for item in item.children %}{% if is_current(item.url) %} active toggled{% endif %}{% endfor %}">
|
|
<a href="#" class="sidebar__header">{{ item.title }}</a>
|
|
<ul class="sidebar__links">
|
|
{% for item in item.children %}
|
|
<li class="{% if is_current(item.url) %}active{% endif %}">
|
|
<a href="{{ url_for(item.url) }}">{{ item.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
<div class="notice">
|
|
<p>Made by <a href="https://coralproject.net/" class="coral-link-invert" target="_blank">The Coral Project</a> by <a href="https://www.voxmedia.com/" class="coral-link-invert" target="_blank" title="Vox Media">Vox Media</a>.</p>
|
|
<a href="https://www.voxmedia.com/" target="_blank" title="Vox Media"><figure class="voxmedia" alt="Vox Media">{{ image_tag('images/coralproject.png') }}</figure></a>
|
|
</div>
|
|
</aside>
|
|
<div class="sidebar__backdrop"></div>
|