This repository has been archived by the owner on Feb 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
52 lines (47 loc) · 1.68 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
---
layout: home
title: PyLadies
description: "Ninguém pode fazer você se sentir inferior sem o seu consentimento (Eleanor Roosevelt)"
headline: An Engineer's Diary
tags: [python, blog, university, pyladies]
---
{% if site.paginate %}
{% for post in paginator.posts %}
<article class="notepad-index-post post row">
<div class="small-12 medium-3 large-2 columns datetime">
<span class="notepad-post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">
<span class="day">
{{ post.date | date: "%d" }}
</span>
<span class="month-year">
{{ post.date | date: "%B %Y" }}
</span>
</time>
</span>
</div>
<div class="small-12 medium-9 large-10 columns">
<header class="notepad-post-header">
<h3 class="notepad-post-title">
<a href="{{ site.url }}{{ post.url }}">
{{ post.title }}
</a>
</h3>
</header>
<section class="notepad-post-excerpt">
<p>{{ post.content | strip_html | truncatewords:40 }}</p>
</section>
<div class="notepad-index-post-tags">
{% for tag in post.categories %}
<a href="{{ site.url }}/categories/index.html#{{ post.categories | cgi_encode }}" title="Other posts from the {{ tag | capitalize }} category">{{ tag | capitalize }}</a>
{% unless forloop.last %} {% endunless %}
{% endfor %}
</div>
</div>
</article>
{% endfor %}
<nav class="pagination" role="navigation">
<a class="newer-posts" href="{{ site.url }}/featured">View All Posts</a>
</nav>
</article>
{% endif %}