-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
69 lines (62 loc) · 2.22 KB
/
home.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
<!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="home-template" itemscope itemtype="http://schema.org/WebPage">
<header class="notepad-site-head">
<div class="notepad-site-head-menu">
<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 class="clearfix"></div>
</div>
<div class="notepad-site-head-content" >
<div class="notepad-site-head-bg"></div>
<h1 class="notepad-blog-title">
<span class="notepad-site-head-title-bg">
{{ site.title }}
</span>
</h1>
<h2 class="notepad-blog-description">{{ site.description }}</h2>
</div>
</header>
<main class="notepad-content" role="main">
{{ content }}
</main>
{% include footer.html %}
{% include scripts.html %}
</body>
</html>