-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
70 lines (60 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<!--
====================================================
__ ____ ______________ _______ ___ __
/ / / / |/ / ____/ \ \/ / ___// | / /
/ /_/ / /|_/ / /_ / /| |\ /\__ \/ /| | / /
/ __ / / / / __/ / ___ |/ /___/ / ___ |/ /___
/_/ /_/_/ /_/_/ /_/ |_/_//____/_/ |_/_____/
====================================================
Owner Name: Hossain Mohammad Faysal
Profile: https://www.facebook.com/hmfaysal
Version: 1.1
Description: Awesome dude, awesome life
====================================================
-->
<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.baseurl }}">
<img src="{{ site.baseurl }}/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.baseurl }}{{ link.url }}">{{ link.title }}</a>
{% endif %} </li>
{% endfor %}
<!-- <li><a href="{{ site.baseurl }}/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>