~openerp-dev/openerp-mobile/openerp-mobile-10

« back to all changes in this revision

Viewing changes to doc/source/_templates/layout.html

  • Committer: Dharmang Soni (OpenERP)
  • Date: 2014-04-07 07:55:14 UTC
  • Revision ID: dpr@tinyerp.com-20140407075514-c0f0i2qm9k6cbrx4
[REMOVE] removed documentation from base framework

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "!layout.html" %}
2
 
 
3
 
{%- block extrahead %}
4
 
{{ super() }}
5
 
<script type="text/javascript">
6
 
  var _gaq = _gaq || [];
7
 
  _gaq.push(['_setAccount', 'UA-47926740-1']);
8
 
  _gaq.push(['_trackPageview']);
9
 
</script>
10
 
 
11
 
<meta name="google-translate-customization" content="1a9f16396f329347-27b519b501ddf27d-gbee5ada102d015d0-f"></meta>
12
 
 
13
 
<!-- AddThis Smart Layers BEGIN -->
14
 
<!-- Go to http://www.addthis.com/get/smart-layers to customize -->
15
 
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-530c64087def677e"></script>
16
 
<script type="text/javascript">
17
 
  addthis.layers({
18
 
    'theme' : 'transparent',
19
 
    'share' : {
20
 
      'position' : 'left',
21
 
      'numPreferredServices' : 5
22
 
    }   
23
 
  });
24
 
</script>
25
 
<!-- AddThis Smart Layers END -->
26
 
 
27
 
{% endblock %}
28
 
 
29
 
{%- block content %}
30
 
{{ navBar() }}
31
 
<div class="container">
32
 
  <div class="row">
33
 
    {%- block sidebar1 %}{{ bsidebar() }}{% endblock %}
34
 
    <div class="{{ bs_span_prefix }}{{ bs_content_width }}">
35
 
 
36
 
                
37
 
        
38
 
      {% block body %}{% endblock %}
39
 
        
40
 
                
41
 
                <div id="disqus_thread"></div>
42
 
            <script type="text/javascript">
43
 
                /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
44
 
                var disqus_shortname = 'openerp-mobile-doc'; // required: replace example with your forum shortname
45
 
        
46
 
                /* * * DON'T EDIT BELOW THIS LINE * * */
47
 
                (function() {
48
 
                    var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
49
 
                    dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
50
 
                    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
51
 
                })();
52
 
            </script>
53
 
            <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
54
 
            <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
55
 
            
56
 
    </div>
57
 
    
58
 
    {% block sidebar2 %} {# possible location for sidebar #} {% endblock %}
59
 
  </div>
60
 
</div>
61
 
 
62
 
{%- endblock %}
63
 
 
64
 
{% block footer %}
65
 
{{ super() }}
66
 
<script type="text/javascript">
67
 
  (function() {
68
 
    var ga = document.createElement('script');
69
 
    ga.src = ('https:' == document.location.protocol ?
70
 
              'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
71
 
    ga.setAttribute('async', 'true');
72
 
    document.documentElement.firstChild.appendChild(ga);
73
 
  })();
74
 
</script>
75
 
</div>
76
 
{% endblock %}