forked from CloudCannon/bakery-store-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
post.html
executable file
·38 lines (38 loc) · 1019 Bytes
/
post.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
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700" media="all">
</head>
<body>
<header>
<div class="container">
<nav class="main-nav">
<ul>
{% assign navigation_pages = site.html_pages | sort: 'navigation_weight' %}
{% for p in navigation_pages %}
{% if p.navigation_weight %}
<li>
<a href="{{ p.url }}" {% if p.url == page.url %}class="active"{% endif %}>
{{ p.title }}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</nav>
<h1><a href="/">Bakery<strong>Store</strong></a></h1>
</div>
</header>
<div class="content">
{{ content }}
</div>
<footer>
<div class="container">
<p class="center-text"> <a href="http://cloudcannon.com">Created by CloudCannon</a></p>
</div>
</footer>
</body>
</html>