Skip to content

Commit 24e9286

Browse files
authored
Create default_prev.html
1 parent 8008136 commit 24e9286

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

default_prev.html

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<!doctype html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
7+
{% seo %}
8+
<link href='https://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>
9+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
10+
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
11+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
12+
<!--[if lt IE 9]>
13+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
14+
<![endif]-->
15+
16+
<style>
17+
#sidebar-left{
18+
float:left;
19+
width:15%;}
20+
</style>
21+
22+
</head>
23+
<body>
24+
<div class="wrapper">
25+
<header>
26+
<h1 class="header">{{ site.title | default: site.github.repository_name }}</h1>
27+
<p class="header">{{ site.description | default: site.github.project_tagline }}</p>
28+
29+
<ul>
30+
{% if site.show_downloads %}
31+
<li class="download"><a class="buttons" href="{{ site.github.zip_url }}">Download ZIP</a></li>
32+
<li class="download"><a class="buttons" href="{{ site.github.tar_url }}">Download TAR</a></li>
33+
{% endif %}
34+
<li><a class="buttons github" href="{{ site.github.repository_url }}">View On GitHub</a></li>
35+
</ul>
36+
37+
<nav class="navbar navbar-default">
38+
<div class="navbar-header">
39+
<div class="collapse navbar-collapse" id="myNavbar">
40+
<ul class="nav navbar-nav">
41+
{% for item in site.menu %}
42+
<li><a href="{{ item.pagename }}">{{ item.name }}</a></li>
43+
{% endfor %}
44+
</ul>
45+
<ul class="nav navbar-nav navbar-right"></ul>
46+
</div>
47+
</div>
48+
</nav>
49+
50+
</header>
51+
52+
53+
54+
55+
56+
<section>
57+
{{ content }}
58+
</section>
59+
60+
<footer>
61+
<p><small>Hosted on <a href="https://pages.github.com">GitHub Pages</a> using the Dinky theme</small></p>
62+
</footer>
63+
</div>
64+
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
65+
{% if site.google_analytics %}
66+
<script type="text/javascript">
67+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
68+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
69+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
70+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
71+
ga('create', '{{ site.google_analytics }}', 'auto');
72+
ga('send', 'pageview');
73+
</script>
74+
{% endif %}
75+
</body>
76+
</html>

0 commit comments

Comments
 (0)