mirror of
https://github.com/DMOJ/online-judge.git
synced 2024-11-25 16:32:37 +08:00
16 lines
480 B
HTML
16 lines
480 B
HTML
{% macro make_tab(name, fa, url, text) %}
|
|
<li class="tab{% if tab == name %} active{% endif %}">
|
|
{%- if url %}<a href="{{ url }}">{% else %}<span>{% endif -%}
|
|
<i class="tab-icon fa {{ fa }}"></i> {{ text }}
|
|
{%- if url %}</a>{% else %}</span>{% endif -%}
|
|
</li>
|
|
{% endmacro %}
|
|
|
|
<div class="tabs">
|
|
<h2>{{ content_title or title }}</h2>
|
|
{% block post_tab_spacer %}{% endblock %}
|
|
<ul>
|
|
{% block tabs %}{% endblock %}
|
|
</ul>
|
|
</div>
|