forked from csswizardry/csswizardry.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.06 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.06 KB
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
---
layout: default
title: Home
page-class: page--home
---
<h1 class="accessibility">CSS Wizardry – CSS, OOCSS, front-end architecture, performance and more…</h1>
<section class="posts">
<ul class="block-list">
{% for post in paginator.posts %}
<li>
<span class="post__time">{{ post.date | date: "%d %B, %Y" }}</span>
<h2 class="post__title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
</li>
{% endfor %}
</ul>
</section>
<ol class="nav pagination">
<li class="pagination__prev">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/">Previous</a>
{% else %}
<a href="/page{{paginator.previous_page}}">Previous</a>
{% endif %}
{% else %}
Previous
{% endif %}
</li><!--
--><li class="pagination__next">
{% if paginator.next_page %}
<a href="/page{{paginator.next_page}}">Next</a>
{% else %}
Next
{% endif %}
</li>
</ol>