equal
  deleted
  inserted
  replaced
  
    
    
     1 {% extends "!layout.html" %} | 
         | 
     2 {%- block footer %} | 
         | 
     3     <div class="footer">  | 
         | 
     4     {%- if show_copyright %} | 
         | 
     5       {%- if hasdoc('copyright') %} | 
         | 
     6         {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %} | 
         | 
     7       {%- else %} | 
         | 
     8         {% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} | 
         | 
     9       {%- endif %} | 
         | 
    10     {%- endif %} | 
         | 
    11     {%- if last_updated %} | 
         | 
    12       {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} | 
         | 
    13     {%- endif %} | 
         | 
    14     {%- if show_sphinx %} | 
         | 
    15       {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %} | 
         | 
    16     {%- endif %} | 
         | 
    17       <a href="http://sourceforge.net/projects/vmm"><img   src="http://sflogo.sourceforge.net/sflogo.php?group_id=213727&type=9" style="width:80px; height:15px border:none;" alt="SourceForge.net Logo" /></a>  | 
         | 
    18     </div>  | 
         | 
    19 {%- endblock %} | 
         |