-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (52 loc) · 2.01 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
---
layout: default
---
<div class="posts">
{% for post in site.posts limit:1 %}
{% if post.featured == true %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<span class="tags">Tagged as: {{ post | tags }}</span><br />
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endif %}
{% endfor %}
</div>
<div id="content">
{% for post in site.posts limit:4 %}
{% if post.featured != true %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<span class="tags">Tagged as: {{ post | tags }}</span><br />
<div class="entry">
{{ post.excerpt | truncate: 140 }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endif %}
{% endfor %}
</div>
<div id="middle">
{% for post in site.posts limit:3 offset:4 %}
{% if post.featured != true %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<span class="tags">Tagged as: {{ post | tags }}</span><br />
<div class="entry">
{{ post.excerpt | truncate: 140 }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endif %}
{% endfor %}
</div>
<div id="sidebar">
<div class="side-info">
Get latest updates from us by joining our <a href="https://telegram.me/devkini">Telegram Channel</a> - <a href="https://telegram.me/devkini">telegram.me/devkini</a> or follow our <a href="https://twitter.com/devkini">Twitter</a>.
</div>
<br />
<a class="twitter-timeline" data-tweet-limit="3" href="https://twitter.com/devkini">Tweets by devkini</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>