30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends '!layout.html' %}
 | 
						|
 | 
						|
{% block footer %}
 | 
						|
<footer class="footer">
 | 
						|
  <div class="container">
 | 
						|
    <p class="pull-right">
 | 
						|
      <a href="#">Back to top</a>
 | 
						|
      {% if theme_source_link_position == "footer" %}
 | 
						|
        <br/>
 | 
						|
        {% include "sourcelink.html" %}
 | 
						|
      {% endif %}
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
    {%- if show_copyright %}
 | 
						|
      {%- if hasdoc('copyright') %}
 | 
						|
        {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}<br/>
 | 
						|
      {%- else %}
 | 
						|
        {% trans copyright=copyright|e %}© Copyright {{ copyright }} <a rel="me" href="https://fosstodon.org/@FitTrackee"><i class="fa fa-mastodon" aria-hidden="true"></i></a>.{% endtrans %}
 | 
						|
      {%- endif %}
 | 
						|
    {%- endif %}
 | 
						|
    {%- if last_updated %}
 | 
						|
      {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}<br/>
 | 
						|
    {%- endif %}
 | 
						|
    {%- if show_sphinx %}
 | 
						|
      {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}<br/>
 | 
						|
    {%- endif %}
 | 
						|
    </p>
 | 
						|
  </div>
 | 
						|
</footer>
 | 
						|
{% endblock %} |