-
Notifications
You must be signed in to change notification settings - Fork 3
/
_Layout.html
26 lines (22 loc) · 1.02 KB
/
_Layout.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<title>Cocoaist — {{ page.title }}</title>
<link rel="shortcut icon" type="image/x-icon" href="{{ wiki.base_path }}images/favicon.ico" />
<link rel="stylesheet" href="{{ wiki.base_path }}css/reset.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="{{ wiki.base_path }}css/taf-seafarer-m.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="{{ wiki.base_path }}css/screen.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="http://use.typekit.com/ojs0ern.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<div id="Container">
<a href="{{ wiki.base_path }}" id="BigLogo">Cocoaist</a>
<hr />
{{ page.content }}
<p class="small right">Last edited by <b>{{ page.author }}</b>, {{ page.date }}</p>
</div>
</body>
</html>