-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathbase.html
More file actions
130 lines (122 loc) · 6.93 KB
/
base.html
File metadata and controls
130 lines (122 loc) · 6.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<title>{% if page_title %}{{ page_title }} - {% endif %}{{ site_name }}</title>
<link rel="shortcut icon" href="{{ base_url }}/static/favicon.ico">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="{{ page_description if page_description }}" />
<meta name="keywords" content="{{ meta['keywords'] if meta }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="msvalidate.01" content="079E754911917142D42AB2A3694F9267" />
<meta name="msvalidate.01" content="08598E7D936D9217891AE6C1665A645D" />
<link rel="stylesheet" href="{{ base_url }}/static/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="{{ base_url }}/static/css/bootstrap-responsive.min.css" type="text/css">
<link rel="stylesheet" href="{{ base_url }}/static/css/main.css" type="text/css">
<link rel="stylesheet" href="{{ base_url }}/static/css/deis-docs.css" type="text/css">
<script src="{{ base_url }}/static/js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{ base_url }}/static/js/jquery-1.10.2.min.js"><\/script>')</script>
</head>
<body style="zoom: 1;">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<div class="row">
<div class="span3 column_calc">
<div class="nav-border">
<ul class="nav nav-list menu">
<li><a href="/"><img class="logo" src="{{ base_url }}/static/img/menu-logo.png" alt="deis logo"></a></li>
<li class="divider"></li>
<li class="navitem overview"><a href="http://deis.io/overview/">Overview</a></li>
<li class="divider"></li>
<li class="navitem get-deis"><a href="http://deis.io/get-deis/">Get Deis</a></li>
<li class="divider"></li>
<li class="navitem get-involved"><a href="http://deis.io/get-involved/">Get Involved</a></li>
<li class="divider"></li>
<li class="navitem documentation selected green"><a href="/">Documentation</a></li>
<li class="divider"></li>
<li class="navitem blog"><a href="http://deis.io/blog/">Blog</a></li>
<li class="divider"></li>
<div style="clear:both;"></div>
</ul>
<footer>
<div class="social-menu">
<a href="https://twitter.com/opendeis" target="_blank"><span class="twitter"></span></a>
<a href="https://botbot.me/freenode/deis/" target="_blank"><span class="irc"></span></a>
<a href="https://github.com/deis/workflow" target="_blank"><span class="github"></span></a>
<a href="http://stackoverflow.com/questions/tagged/deis?sort=active" target="_blank"><span class="stack"></span></a>
</div>
<div class="byline-menu">
<p>Deis is a project by <a href="https://deis.com/community">Engine Yard</a></p>
</div>
</footer>
</div>
</div>
<div class="span6 column_calc contents">
<div class="doc-content">
<div class="version-warning important">
<p class="version-warning-title">Version 2</p>
<p>This documentation is for Deis Workflow (v2). For v1 documentation visit <a href="http://docs.deis.io/en/latest/">http://docs.deis.io/en/latest/</a>.</p>
</div>
{{ content }}
</div>
</div>
<div class="span3 docs-sidebar column_calc">
<a class="fork" href="http://github.com/deis/docs-v2"><div class="forkImage"></div></a>
<div class="docs-border"></div>
<div class="navigation">
{%- include "nav.html" %}
<div class="clearfix"></div>
</div>
<ul class="current">
<li class="toctree-l1">
{% if READTHEDOCS %}
<a class="reference internal" href="../" state="open">Versions</a>
<ul class="current">
{% for slug, url in versions %}
<li class="toctree-l2"><a href="{{ url }}{%- for word in pagename.split('/') -%}
{%- if word != 'index' -%}
{%- if word != '' -%}
{{ word }}/
{%- endif -%}
{%- endif -%}
{%- endfor -%}"
title="Switch to {{ slug }}">{{ slug }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
</ul>
</div>
</div>
</div>
<!--
extra_javascript contains paths to JavaScript files in the
users documentation directory or a list of JavaScript files
defined in their mkdocs.yml.
http://www.mkdocs.org/user-guide/configuration/#extra_javascript
-->
{% for path in extra_javascript %}
<script src="{{ path }}"></script>
{% endfor %}
<!--
Include Google Analytics tracking code.
http://www.mkdocs.org/user-guide/configuration/#google_analytics
-->
{% if google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ google_analytics[0] }}', '{{ google_analytics[1] }}');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>