-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use the same template page as hoomd/freud
- Loading branch information
Showing
3 changed files
with
151 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{% extends "furo/page.html" %} | ||
{% block footer %} | ||
<div class="related-pages"> | ||
{% if next -%} | ||
<a class="next-page" href="{{ next.link }}"> | ||
<div class="page-info"> | ||
<div class="context"> | ||
<span>{{ _("Next") }}</span> | ||
</div> | ||
<div class="title">{{ next.title }}</div> | ||
</div> | ||
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg> | ||
</a> | ||
{%- endif %} | ||
{% if prev -%} | ||
<a class="prev-page" href="{{ prev.link }}"> | ||
<svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg> | ||
<div class="page-info"> | ||
<div class="context"> | ||
<span>{{ _("Previous") }}</span> | ||
</div> | ||
{% if prev.link == pathto(master_doc) %} | ||
<div class="title">{{ _("Home") }}</div> | ||
{% else %} | ||
<div class="title">{{ prev.title }}</div> | ||
{% endif %} | ||
</div> | ||
</a> | ||
{%- endif %} | ||
</div> | ||
<div class="bottom-of-page"> | ||
<div class="left-details"> | ||
<p>Development of {{ project }} is led by the <a href="https://glotzerlab.engin.umich.edu">Glotzer Group</a> at the <a href="https://umich.edu">University of Michigan</a> (supported by NSF DMR 1808342) with many <a href="credits.html">external contributions</a>. | ||
</p> | ||
|
||
{%- if show_copyright %} | ||
<div class="copyright"> | ||
{%- if hasdoc('copyright') %} | ||
{% trans path=pathto('copyright'), copyright=copyright|e -%} | ||
<a href="{{ path }}">Copyright</a> © {{ copyright }} | ||
{%- endtrans %} | ||
{%- else %} | ||
{% trans copyright=copyright|e -%} | ||
Copyright © {{ copyright }} | ||
{%- endtrans %} | ||
{%- endif %} | ||
</div> | ||
{%- endif %} | ||
{% trans %}Made with {% endtrans -%} | ||
{%- if show_sphinx -%} | ||
{% trans %}<a href="https://www.sphinx-doc.org/">Sphinx</a> and {% endtrans -%} | ||
<a class="muted-link" href="https://pradyunsg.me">@pradyunsg</a>'s | ||
{% endif -%} | ||
{% trans %} | ||
<a href="https://github.com/pradyunsg/furo">Furo</a> | ||
{% endtrans %} | ||
{%- if last_updated -%} | ||
<div class="last-updated"> | ||
{% trans last_updated=last_updated|e -%} | ||
Last updated on {{ last_updated }} | ||
{%- endtrans -%} | ||
</div> | ||
{%- endif %} | ||
</div> | ||
<div class="right-details"> | ||
<a class="muted-link" href="http://umich.edu"> | ||
<img src="{{ pathto('_static/umich-block-M.svg', 1) }}" alt="University of Michigan logo" style="width: 84px; float: right;" /> | ||
</a> | ||
</div> | ||
</div> | ||
{% endblock footer %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters