comparison doc/.templates/layout.html @ 908:9472d234db2e

Added basics for documentation with sphinx and epydoc, by copying files from the Theano/doc directory
author fsavard
date Thu, 18 Mar 2010 11:33:49 -0400
parents
children
comparison
equal deleted inserted replaced
904:08b37147dec1 908:9472d234db2e
1 {% extends "!layout.html" %}
2
3 {%- block extrahead %}
4 {{ super() }}
5 <script type="text/javascript">
6 var _gaq = _gaq || [];
7 _gaq.push(['_setAccount', 'UA-168290-9']);
8 _gaq.push(['_trackPageview']);
9 </script>
10 {% endblock %}
11
12 {% block footer %}
13 {{ super() }}
14 <script type="text/javascript">
15 (function() {
16 var ga = document.createElement('script');
17 ga.src = ('https:' == document.location.protocol ?
18 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
19 ga.setAttribute('async', 'true');
20 document.documentElement.firstChild.appendChild(ga);
21 })();
22 </script>
23 {% endblock %}
24