1{% extends "!footer.html" %} 2{% block contentinfo %} 3<p> 4 {%- if show_copyright %} 5 © Copyright {{ copyright }}. 6 {%- endif %} 7 8 {%- if last_updated %} 9 <div class="lastupdated"> 10 Last generated: {{ last_updated }}. 11 {%- set git_last_updated, sha1 = pagename | git_info | default((None, None), true) %} 12 {%- if git_last_updated %} 13 Last source update: {{ git_last_updated }}. 14 {%- endif %} 15 </div> 16 {%- endif -%} 17</p> 18{% endblock %} 19