forked from odewahn/docker-jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_layout.ejs
109 lines (74 loc) · 3.53 KB
/
_layout.ejs
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
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<title><%= title %></title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css"/>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'></link>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href='assets/html.css' rel='stylesheet' type='text/css'></link>
<script type="text/javascript">
$(function() {
$("#link-toc").click(function(e) {
e.preventDefault();
$("#sidebar").toggle();
});
});
</script>
</head>
<body>
<header>
<div id="buttons">
<a href="#" id="link-toc">☰</a>
</div>
<table class="social-buttons">
<tr>
<td width="80%">
<h1> <a href="/docker-jumpstart"><%= title %> by <%= author %></a></h1>
</td>
<td>
<a href="https://twitter.com/share" class="twitter-share-button" data-via="odewahn">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</td>
<td>
<iframe src="http://ghbtns.com/github-btn.html?user=odewahn&repo=docker-jumpstart&type=watch" allowtransparency="true" frameborder="0" scrolling="0" width="62" height="20"> </iframe>
</td>
</tr>
</table>
<a href="https://github.com/odewahn/docker-jumpstart">
<img src="https://s3.amazonaws.com/orm-atlas-media/fork-on-github.png" class="fork-on-github"/>
</a>
</header>
<div id="flex-box">
<section id="sidebar">
<%- partial("_toc") %>
</section>
<section id="content">
<section id="content-body">
<%- yield %>
<%- partial("_nav") %>
<div id="disqus_thread"></div>
</section>
</section>
</div>
<footer>
<img class="logo" src="http://orm-logo-service.herokuapp.com/webops/logo.svg" />
</footer>
</body>
<script type="text/javascript">
jQuery(document).ready(function(){
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
window.disqus_shortname = 'dockerjumpstart'; // required: replace example with your forum shortname
window.disqus_title = $('title').text() + " / " + $('h1').first().text();
window.disqus_id = $('title').text() + " / " + $('section').first().attr('id');
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
});
</script>
</html>