tlayout.html - pism - [fork] customized build of PISM, the parallel ice sheet model (tillflux branch)
 (HTM) git clone git://src.adamsgaard.dk/pism
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tlayout.html (1805B)
       ---
            1 {% extends '!layout.html' %}
            2 
            3 {%- block document %}
            4 <div class="documentwrapper">
            5   {%- if render_sidebar %}
            6   <div class="bodywrapper">
            7     {%- endif %}
            8     <div class="body" role="main">
            9       {% block body %} {% endblock %}
           10       <hr>
           11       <table style="width: 100%">
           12         <tr>
           13           <td style="text-align: left; width: 30%">
           14             {%- if prev %}
           15               <a class="reference internal" href="{{ prev.link|e }}">Previous</a>
           16             {%- endif %}
           17           </td>
           18           <td style="text-align: center; width: 30%">
           19             {%- if parents[-1] %}
           20               <a class="reference internal" href="{{ parents[-1].link|e }}">Up</a>
           21             {%- endif %}
           22           </td>
           23           <td style="text-align: right; width: 30%">
           24             {%- if next %}
           25               <a class="reference internal" href="{{ next.link|e }}">Next</a>
           26             {%- endif %}
           27           </td>
           28         </tr>
           29       </table>
           30     </div>
           31     {%- if render_sidebar %}
           32   </div>
           33   {%- endif %}
           34 </div>
           35 {%- endblock %}
           36 
           37 {%- block footer %}
           38     <div class="footer">
           39       Git revision {{ git_revision }}
           40       committed by {{ git_author }}
           41       on {{ git_date }} |
           42       {% if show_copyright %}&copy; {{ copyright }}.{% endif %}
           43       {% if theme_show_powered_by|lower == 'true' %}
           44       {% if show_copyright %}|{% endif %}
           45       Powered by <a href="http://sphinx-doc.org/">Sphinx {{ sphinx_version }}</a>
           46       &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster {{ alabaster_version }}</a>
           47       {% endif %}
           48       {%- if show_source and has_source and sourcename %}
           49       {% if show_copyright or theme_show_powered_by %}|{% endif %}
           50       <a href="{{ pathto('_sources/' + sourcename, true)|e }}"
           51           rel="nofollow">{{ _('Page source') }}</a>
           52       {%- endif %}
           53     </div>
           54 {%- endblock %}