13282: Add architecture section
[arvados.git] / doc / _layouts / default.html.liquid
1 {% comment %}
2 Copyright (C) The Arvados Authors. All rights reserved.
3
4 SPDX-License-Identifier: CC-BY-SA-3.0
5 {% endcomment %}
6
7 <!DOCTYPE html>
8 <html>
9   <head>
10     <meta charset="utf-8">
11     <title>{% unless page.title == "Arvados | Documentation" %} Arvados {% if page.navmenu %}| {{ page.navmenu }} {% endif %} | {% endunless %}{{ page.title }}</title>
12     <meta name="viewport" content="width=device-width, initial-scale=1.0">
13     <meta name="description" content="">
14     <meta name="author" content="">
15     <link rel="icon" href="{{ site.baseurl }}/images/favicon.ico" type="image/x-icon">
16     <link rel="shortcut icon" href="{{ site.baseurl }}/images/favicon.ico" type="image/x-icon">
17     <link href="{{ site.baseurl }}/css/bootstrap.css" rel="stylesheet">
18     <link href="{{ site.baseurl }}/css/nav-list.css" rel="stylesheet">
19     <link href="{{ site.baseurl }}/css/badges.css" rel="stylesheet">
20     <link href="{{ site.baseurl }}/css/code.css" rel="stylesheet">
21     <link href="{{ site.baseurl }}/css/font-awesome.css" rel="stylesheet">
22     <link href="{{ site.baseurl }}/css/carousel-override.css" rel="stylesheet">
23     <link href="{{ site.baseurl }}/css/button-override.css" rel="stylesheet">
24     <link href="{{ site.baseurl }}/css/images.css" rel="stylesheet">
25     <style>
26       html {
27       height:100%;
28       }
29       body {
30       padding-top: 61px;
31       height: 90%; /* If calc() is not supported */
32       height: calc(100% - 46px); /* Sets the body full height minus the padding for the menu bar */
33       }
34       @media (max-width: 979px) {
35       div.frontpagehero {
36       margin-left: -20px;
37       margin-right: -20px;
38       padding-left: 20px;
39       }
40       }
41       .sidebar-nav {
42         padding: 9px 0;
43       }
44       .section-block {
45       background: #eeeeee;
46       padding: 1em;
47       -webkit-border-radius: 12px;
48       -moz-border-radius: 12px;
49       border-radius: 12px;
50       margin: 0 2em;
51       }
52       .row-fluid :first-child .section-block {
53       margin-left: 0;
54       }
55       .row-fluid :last-child .section-block {
56       margin-right: 0;
57       }
58       .rarr {
59       font-size: 1.5em;
60       }
61       .darr {
62       font-size: 4em;
63       text-align: center;
64       margin-bottom: 1em;
65       }
66       :target {
67       padding-top: 61px;
68       margin-top: -61px;
69       }
70     </style>
71
72     <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
73     <!--[if lt IE 9]>
74         <script src="../assets/js/html5shiv.js"></script>
75         <![endif]-->
76   </head>
77   <body class="nopad">
78     {% include 'navbar_top' %}
79
80     {% if page.navsection == 'top' or page.no_nav_left %}
81     {{ content }}
82     {% else %}
83
84     <div class="container-fluid">
85       <div class="row">
86         {% include 'navbar_left' %}
87         <div class="col-sm-9">
88           <h1>{{ page.title }}</h1>
89           {{ content }}
90           {% include 'webring' %}
91         </div>
92       </div>
93
94       <div style="height: 2em"></div>
95
96     </div>
97     {% endif %}
98     <script src="{{ site.baseurl }}/js/jquery.min.js"></script>
99     <script src="{{ site.baseurl }}/js/bootstrap.min.js"></script>
100     <script>
101   (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
102   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
103   m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
104   })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
105
106   ga('create', 'UA-40055979-1', 'arvados.org');
107   ga('send', 'pageview');
108
109     </script>
110
111 {% if page.no_nav_left %}
112 {% else %}
113 <p style="text-align: center"><small>
114 The content of this documentation is licensed under the
115 <a href="{{ site.baseurl }}/user/copying/by-sa-3.0.html">Creative
116   Commons Attribution-Share Alike 3.0 United States</a> licence.<br>
117 Code samples in this documentation are licensed under the
118 <a href="{{ site.baseurl }}/user/copying/LICENSE-2.0.html">Apache License, Version 2.0.</a></small>
119 </p>
120 {% endif %}
121
122
123   </body>
124 </html>