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

« back to all changes in this revision

Viewing changes to doc/source/_themes/bootstrap/navbar.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
 
  <div id="navbar" class="{{ theme_navbar_class }} navbar-default {% if theme_navbar_fixed_top == 'true' -%} navbar-fixed-top{%- endif -%}">
2
 
    <div class="container">
3
 
      <div class="navbar-header">
4
 
        <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
5
 
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
6
 
          <span class="icon-bar"></span>
7
 
          <span class="icon-bar"></span>
8
 
          <span class="icon-bar"></span>
9
 
        </button>
10
 
        <a class="navbar-brand" href="{{ pathto(master_doc) }}">
11
 
          {%- block sidebarlogo %}
12
 
            {%- if logo %}<img src="{{ pathto('_static/' + logo, 1) }}">{%- endif %}
13
 
          {%- endblock %}
14
 
          {% if theme_navbar_title -%}{{ theme_navbar_title|e }}{%- else -%}{{ project|e }}{%- endif -%}
15
 
        </a>
16
 
        <span class="navbar-text navbar-version pull-left"><b>{{ version|e }}</b></span>
17
 
      </div>
18
 
 
19
 
        <div class="collapse navbar-collapse nav-collapse">
20
 
          <ul class="nav navbar-nav">
21
 
            <li class="divider-vertical"></li>
22
 
            {% if theme_navbar_links %}
23
 
              {%- for link in theme_navbar_links %}
24
 
                <li><a href="{{ pathto(*link[1:]) }}">{{ link[0] }}</a></li>
25
 
              {%- endfor %}
26
 
            {% endif %}
27
 
            {% block navbartoc %}
28
 
              {% include "globaltoc.html" %}
29
 
              {% if theme_navbar_pagenav %}
30
 
                {% include "navbartoc.html" %}
31
 
              {% endif %}
32
 
            {% endblock %}
33
 
            {% if theme_navbar_sidebarrel %}
34
 
              {% block sidebarrel %}
35
 
                {% include "relations.html" %}
36
 
              {% endblock %}
37
 
            {% endif %}
38
 
            {% block navbarextra %}
39
 
            {% endblock %}
40
 
            {% if theme_source_link_position == "nav" %}
41
 
              <li class="hidden-sm">{% include "sourcelink.html" %}</li>
42
 
            {% endif %}
43
 
          </ul>
44
 
 
45
 
          {% block navbarsearch %}
46
 
            {% include "navbarsearchbox.html" %}
47
 
          {% endblock %}
48
 
        </div>
49
 
    </div>
50
 
  </div>