-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (30 loc) · 1.4 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
---
layout: page
title: Home
description: "The personal blog of JRichardsz, a System Engineering Bachelor at Peruvian University UNFV."
headline: Welcome to my blog
tags: [java, Mathematician, devops, jelastic, tomcat, inteligencia, artificial, ia, ai, series, ficcion, android, 3D, min3Dd, animes
, s.a.o, evangelion,peru,unfv]
---
<ul class="post-list">
{% for post in paginator.posts limit:10 %}
<li><article><a href="{{ site.url }}{{ post.url }}"><i class="icon-pencil"></i> {{ post.title }} <span class="entry-date">Posted in {{ post.categories | join: ', ' | capitalize }} • <i class="icon-time"></i> {{ post.content.size | readtime | pluralize: "minute" }} read</span></a></article></li>
<p>{{ post.content | strip_html | truncatewords:40 }} <a href="{{ post.url }}"> Read more...</a></p>
{% endfor %}
<br>
<div align="center">
<nav id="pagination">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="btn" title="Newer Posts">« Newer Posts</a>
{% else %}
<a href="/page{{ paginator.previous_page }}/" class="btn" title="Newer Posts">« Newer Posts</a>
{% endif %}
{% endif %}
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page }}/" class="btn" title="Older Posts">Older Posts »</a>
{% endif %}
</nav>
Page: {{ paginator.page }} of {{ paginator.total_pages }}
</div>
</ul>