-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbase.liquid
83 lines (74 loc) · 3.17 KB
/
base.liquid
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
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml/" xml:lang="en" lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<meta name="author" content="{{ site.name }}" />
<meta name="description" content="{{ site.description }}" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="alternate" type="application/rss+xml" href="/atom.xml" />
<link href="https://bamos.github.io/vendor/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
<link href="https://bamos.github.io/vendor/css/academicons.min.css" rel="stylesheet">
<link href="https://bamos.github.io/vendor/pygments/default.css" rel="stylesheet">
<link href="https://bamos.github.io/css/bamos.css" rel="stylesheet">
<link href="https://bamos.github.io/css/sharingbuttons.css" rel="stylesheet">
<script src="https://bamos.github.io/vendor/js/jquery.min.js"></script>
<script type="module" src="https://md-block.verou.me/md-block.js"></script>
<style>
h1 a, a:hover { color: #333333; }
@supports (-webkit-touch-callout: none) {
object { display: none; }
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="navbar-header">
<div class='navbar-brand'>
<a href='https://bamos.github.io/images/me.jpg'><img src="https://bamos.github.io/images/me-face.jpg" class="img-circle"></img></a>
<a href="/">Brandon Amos</a>
</div>
<button class="navbar-toggle" type="button" data-toggle="collapse"
data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="/">About</a>
</li>
<li>
<a href="/blog/">Blog</a>
</li>
<li>
<a href="/presentations/">Presentations</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
{{ content }}
<script src="https://bamos.github.io/js/sp.js"></script>
<script src="https://bamos.github.io/vendor/js/bootstrap.min.js"></script>
<script src="https://bamos.github.io/vendor/js/anchor.min.js"></script>
<script src="https://bamos.github.io/vendor/js/jquery.toc.js"></script>
<script type="text/javascript">
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-102191838-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>