forked from sockeqwe/website-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
56 lines (47 loc) · 1.67 KB
/
page.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
{% include head.html %}
</head>
<body class="post-template page" itemscope itemtype="http://schema.org/WebPage">
<main id="notepad-page-container" class="notepad-page-container" role="main">
<header class="notepad-page-header">
<div class="notepad-page-menu-header">
<a class="notepad-blog-logo" href="{{ site.url }}">
<img src="{{ site.url }}/images/{{ site.logo }}" alt="Blog Logo">
</a>
<div class="notepad-blog-menu">
<div class="notepad-mobile-menu show-for-small">
<a href="#"><i class="fa fa-bars"></i></a>
</div>
<ul class="notepad-menu">
<li class="notepad-mobile-close-btn show-for-small text-right">
<a href="#"><i class="fa fa-times"></i></a>
</li>
{% for link in site.links %}
<li>{% if link.external %}
<a href="{{ link.url }}">{{ link.title }}</a>
{% else %}
<a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a>
{% endif %} </li>
{% endfor %}
<li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li>
</ul>
</div>
</div>
<div class="notepad-page-title row">
<div class="small-12 columns">
<h1>{{ page.title }}</h1>
</div>
</div>
</header>
<article class="notepad-page-content">
<div>{{ content }}</div>
</article>
<div class="cf"></div>
{% include footer.html %}
</main>
{% include scripts.html %}
</body>
</html>