-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
121 lines (98 loc) · 3.08 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
layout: master
title: Home
description: Tangled web dairy of Abdel Raoof
---
<div class="container">
<header class="row">
<div class="col-sm-6 col-md-12" style="margin-top:25px;margin-bottom:25px">
<h1 id="pin">{{site.title}}</h1>
</div>
</header>
<nav>
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<a href="about/" title="About Me">
<div class="tile purple profile">
<h2 class="title">About Me</h2>
<p>Hello World, I am {{site.author}}.</p>
</div>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="resume/" title="Resume" class="tile red">
<i class="icon-rems" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="blog/" title="Blog" class="tile orange">
<i class="icon-blog" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
{% for post in site.posts limit:1 %}
<a href="{{post.url}}" title="Latest Article">
<div class="tile red">
<h3 class="title">Latest Article</h3>
<h4 class="title">{{ post.title }}</h4>
<p> {{ post.content | strip_html | truncatewords: 10 }}</p>
</div>
</a>
{% endfor %}
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.github}}" title="Github" class="tile darken">
<i class="icon-gthb" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.stackoverflow}}" title="StackOverflow" class="tile darken" >
<i class="icon-skow" style="font-size:8em;color:white"></i>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
{% for post in site.posts %}
{% if post.featured == true %}
<a href="{{post.url}}" title="Featured Article">
<div class="tile orange">
<h3 class="title">Featured Article</h3>
<h4 class="title">{{ post.title }}</h4>
<p> {{ post.content | strip_html | truncatewords: 10 }}</p>
</div>
</a>
{% break %}
{% endif %}
{% endfor %}
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="feed.xml" title="RSS Feed" class="tile orange">
<i class="icon-rss" style="font-size:8em"></i>
</a>
</div>
</div>
<div class="row" style="margin-bottom:25px">
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.twitter}}" title="Twitter" class="tile blue">
<i class="icon-twtr" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.gplus}}" title="Google Plus" class="tile orange">
<i class="icon-gpls" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.facebook}}" title="Facebook" class="tile drk-blue">
<i class="icon-fcbk" style="font-size:8em"></i>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.linkedin}}" title="LinkedIn" class="tile blue">
<i class="icon-lkin" style="font-size:8em"></i>
</a>
</div>
</div>
</nav>
</div>