-
Notifications
You must be signed in to change notification settings - Fork 3
/
articles.html
31 lines (30 loc) · 1.08 KB
/
articles.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
---
layout: default
---
<!-- the content section includes the list of articles written for the website. -->
<section class="full-articles"
title="Articles written in Latin Americans in Cryptography magazine">
<!-- this section includes the main, most important content of this section. -->
<div class="main-content">
<p class="intro-text">Thoughts on Cryptography</p>
<div id="articles-full-list">
{% for post in site.posts %}
<div class="article-full-element">
<a href="{{post.url}}"
alt="{{post.alt}}">
<img src="{{post.image}}"
alt="{{post.alt}}'s photo"
class="article-full-image" />
</a>
<a href="{{post.url}}">
<div class="article-full-information">
<p class="article-full-title">{{post.title}}</p>
<p class="article-full-author">{{post.author}}</p>
<p class="article-full-date">{{ post.date | date: '%B %d, %Y' }}</p>
<p class="article-full-tags">{{post.tags}}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</section>