You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/partials/footer.html

72 lines
3.3 KiB
HTML

5 years ago
<div class="footer">
<div class="row"><div class="columns">
{% if show_topics|default(true) %}
<div class="row footer__links">
<div class="medium-3 large-2 columns footer__category expandable">
<h1>
{{ _('Status') }}
<span class="expand-icon">
<span class="icon icon-expand_more"></span>
</span>
</h1>
<div class="footer__category__expander"><ul class="footer__category__list">
<li class="footer__category__item"><a href="/r">{{ _('Judging Queue') }}</a></li>
5 years ago
<li class="footer__category__item"><a href="#">{{ _('Service Status') }}</a></li>
</ul></div>
</div>
<div class="medium-3 large-2 columns footer__category expandable">
<h1>
{{ _('Development') }}
<span class="expand-icon">
<span class="icon icon-expand_more"></span>
</span>
</h1>
<div class="footer__category__expander"><ul class="footer__category__list">
5 years ago
<li class="footer__category__item"><a href="https://github.com/hydro-dev/Hydro" target="_blank">{{ _('Open Source') }}</a></li>
<li class="footer__category__item"><a href="/wiki/api">{{ _('API') }}</a></li>
5 years ago
</ul></div>
</div>
<div class="medium-3 large-2 columns footer__category expandable end">
<h1>
{{ _('Support') }}
<span class="expand-icon">
<span class="icon icon-expand_more"></span>
</span>
</h1>
<div class="footer__category__expander"><ul class="footer__category__list">
5 years ago
<li class="footer__category__item"><a href="/wiki/about">{{ _('Help') }}</a></li>
5 years ago
<!--<li class="footer__category__item"><a href="#">{{ _('Blog') }}</a></li>-->
5 years ago
<li class="footer__category__item"><a href="/wiki/contact">{{ _('QQ Group') }}</a></li>
5 years ago
</ul></div>
</div>
</div>
{% endif %}
<div class="footer__extra-link clearfix">
<div class="footer__extra-left">
<ol class="clearfix">
5 years ago
<li class="footer__extra-link-item"><a href="/wiki/about">{{ _('About') }}</a></li>
<li class="footer__extra-link-item"><a href="/wiki/contact">{{ _('Contact Us') }}</a></li>
<li class="footer__extra-link-item"><a href="/wiki/privacy">{{ _('Privacy') }}</a></li>
<li class="footer__extra-link-item"><a href="/wiki/terms-of-service/">{{ _('Terms of Service') }}</a></li>
<li class="footer__extra-link-item"><a href="/wiki/copyright-complaint/">{{ _('Copyright Complaint') }}</a></li>
5 years ago
<li class="footer__extra-link-item" data-dropdown-target="#menu-footer-lang">
<span><span class="icon icon-global"></span> Language <span class="icon icon-expand_less"></span></span>
<ol class="dropdown-target menu" id="menu-footer-lang">
{% for item in model.builtin.VIEW_LANGS %}
<li class="menu__item"><a class="menu__link" href="/lang/{{ item.code }}">{{ item.name }}</a></li>
5 years ago
{% endfor %}
</ol>
</li>
</ol>
</div>
<div class="footer__extra-right">
<ol class="clearfix">
{% for html in model.builtin.FOOTER_EXTRA_HTMLS %}
5 years ago
<li class="footer__extra-link-item">{{ html|safe }}</li>
{% endfor %}
</ol>
</div>
</div>
</div></div>
</div>