Ignore:
Timestamp:
06/23/11 18:52:19 (13 years ago)
Author:
pinsard
Message:

fill website pages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/website/_templates/layout.html

    r48 r53  
    11{% extends "!layout.html" %} 
    22 
     3{%- block extrahead %} 
     4{{ super() }} 
     5<script type="text/javascript"> 
     6  var _gaq = _gaq || []; 
     7  _gaq.push(['_setAccount', 'UA-24127110-1']); 
     8  _gaq.push(['_trackPageview']); 
     9</script> 
     10{% endblock %} 
     11 
     12{% block footer %} 
     13{{ super() }} 
     14<div class="footer">This page uses <a href="http://analytics.google.com/"> 
     15Google Analytics</a> to collect statistics. You can disable it by blocking 
     16the JavaScript coming from www.google-analytics.com. 
     17<script type="text/javascript"> 
     18  (function() { 
     19    var ga = document.createElement('script'); 
     20    ga.src = ('https:' == document.location.protocol ? 
     21              'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
     22    ga.setAttribute('async', 'true'); 
     23    document.documentElement.firstChild.appendChild(ga); 
     24  })(); 
     25</script> 
     26</div> 
     27{% endblock %} 
    328 
    429{% block rootrellink %} 
    5         <li><a href="{{ pathto('index') }}">home</a>|&nbsp;</li> 
    6         <li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li> 
    7        <li><a href="{{ pathto('contents') }}">documentation </a> &raquo;</li> 
     30   <li><a href="{{ pathto('index') }}">home</a>|&nbsp;</li> 
     31   <li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li> 
     32   <li><a href="{{ pathto('contents') }}">documentation </a> &raquo;</li> 
    833{% endblock %} 
    934 
     
    2146{% block sidebar1 %}{{ sidebar() }}{% endblock %} 
    2247{% block sidebar2 %}{% endblock %} 
    23  
Note: See TracChangeset for help on using the changeset viewer.