-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexplore.html
More file actions
25 lines (24 loc) · 866 Bytes
/
explore.html
File metadata and controls
25 lines (24 loc) · 866 Bytes
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
---
layout: default
---
<article id="main">
<header class="special container">
<span class="icon fa-mobile"></span>
<h2>What I cannot <strong>create</strong>, I do not <strong>understand</strong>.</h2>
<p>~ Richard Feynman</p>
</header>
<section class="wrapper style4 container">
<ul class="posts">
{% for post in site.posts %}
<li class="wrapper {% if forloop.first %} style2 {% else %} style1 {% endif %}">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
<section class="special">
<ul class="buttons">
<li><a href="{{ post.url }}" class="button">Read more</a></li>
</ul></section>
</li>
{% endfor %}
</ul>
</section>
</article>