corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <!-- Meta, title, CSS, favicons, etc. -->
5 {% include header.html %}
6 </head>
7 <body>
8 <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a>
9  
10 <!-- Docs master nav -->
11 {% include nav.html %}
12  
13 <!-- Docs page layout -->
14 <div class="bs-docs-header" id="content">
15 <div class="container">
16 <h1>{% t page.title %}</h1>
17 <p>{% t page.lead %}</p>
18 </div>
19 </div>
20  
21 {% include social-buttons.html %}
22  
23 <hr>
24  
25 <div class="container bs-docs-container">
26  
27 <div class="row">
28 <div class="col-md-{% if page.fullwidth == true %}12{% else %}9{% endif %}"
29 role="main"
30 {% if page.slug != "examples" %}data-toggle="sidenav"{% endif %}
31 data-container="#sidenav"
32 data-hs="h1,h2"
33 data-smart-id="true"
34 data-bottom=".bs-docs-footer">
35 {{ content }}
36 </div>
37 {% unless page.fullwidth == true %}
38 <div class="col-md-3">
39 <div id="sidenav">
40 </div>
41 {% endunless %}
42 </div>
43 </div>
44  
45 {% include footer.html %}
46 </body>
47 </html>