mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
24 lines
1.0 KiB
HTML
24 lines
1.0 KiB
HTML
<div class="row">
|
|
<ul class="col-sm-6 list-inline">
|
|
{% if not FOOTER_LINKS %}
|
|
{% if not HIDE_AUTHORS %}
|
|
<li class="list-inline-item"><a
|
|
href="{{ SITEURL }}/{{ AUTHORS_URL or AUTHORS_SAVE_AS or 'authors.html' }}">Authors</a></li>
|
|
{% endif %}
|
|
<li class="list-inline-item"><a
|
|
href="{{ SITEURL }}/{{ ARCHIVES_URL or ARCHIVES_SAVE_AS or 'archives.html' }}">Archives</a></li>
|
|
<li class="list-inline-item"><a
|
|
href="{{ SITEURL }}/{{ CATEGORIES_URL or CATEGORIES_SAVE_AS or 'categories.html' }}">Categories</a></li>
|
|
{% if tags|length %}
|
|
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ TAGS_URL or TAGS_SAVE_AS or 'tags.html' }}">Tags</a></li>
|
|
{% endif %}
|
|
{% else %}
|
|
{% for title, link in FOOTER_LINKS %}
|
|
<li class="list-inline-item"><a href="{{ url(link) }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
<p class="col-sm-6 text-sm-right text-muted">
|
|
© 2018-2021 <a href="https://github.com/avinal" target="_blank">Avinal Kumar</a>
|
|
</p>
|
|
</div> |