-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
executable file
·49 lines (45 loc) · 1.6 KB
/
blog.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
---
layout: default
---
{% include header.html %}
<!-- Main -->
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>My <strong>Blog</strong></h2>
<p>Ipsum dolor feugiat aliquam tempus sed magna lorem consequat accumsan</p>
</header>
</div>
</div>
<!-- Content -->
{% for post in site.posts %}
{% if forloop.first %}
<!-- Five -->
<section id="five" class="wrapper style2 special fade">
<div class="container">
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
{{ post.excerpt }}
</div>
<section class="special">
<ul class="actions">
<li><a href="{{ site.baseurl }}{{ post.url }}" class="button">Read more</a></li>
</ul>
</section>
</section>
{% else %}
<section id="content">
<div class="wrapper style1">
<div class="container">
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
{{ post.excerpt }}
</div>
</div>
<section class="special">
<ul class="actions">
<li><a href="{{ site.baseurl }}{{ post.url }}" class="button">Read more</a></li>
</ul>
</section>
</section>
{% endif %}
{% endfor %}
{% include footer.html %}