-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathdefault.html
More file actions
28 lines (28 loc) · 1.14 KB
/
default.html
File metadata and controls
28 lines (28 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Site Title {% if page.url != '/index.html' %}| {{page.title}}{% endif %}</title>
<meta charset='UTF-8'/>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link rel='alternate' type='application/rss+xml' title='RSS' href='SITEURLGOESHERE/blog.rss' />
<link rel='shortcut icon' href='{{site.baseurl}}/img/favicon.ico' type='image/x-icon' />
<link href='{{site.baseurl}}/site.css' rel='stylesheet' />
</head>
<body>
<div class='container'>
<div class='col12 clearfix'>
<div class='header col6 margin3 pad4h'>
<div class='clearfix col12'>
<div class='menu fr'>
<a class='{% if page.section == "blog" %}active{% endif %}' href='{{site.baseurl}}/'>Blog</a>
<a class='{% if page.url == "about/" %}active{% endif %}' href='{{site.baseurl}}/about'>About</a>
<a href='//github.com/prose/starter'>Fork on GitHub</a>
</div>
<h1 class='title'><a href='{{site.baseurl}}/'>Site Title</a></h1>
</div>
</div>
</div>
{{content}}
</div>
<script src='{{site.baseurl}}/site.js'></script>
</body>