forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
33 lines (31 loc) · 1.14 KB
/
categories.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
permalink: /topics/
title: Topics
---
<p>In this section you can find the main list of articles organized by categories.</p>
<strong>Author</strong>
<hr>
<ul>
<li>Contact at: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Drupal.org: <a href="https://www.drupal.org/u/saganakat">drupal.org/u/saganakat</a></li>
<li>Linkedin: <a href="https://www.linkedin.com/in/samuel-garcía-navarro">linkedin.com/samuel-garcía-navarro</a></li>
<li>Sketchbook: <a href="https://saganakat.github.io">saganakat.github.io</a></li>
</ul>
<hr>
<div id="archives">
{% for category in site.categories %}
<div class="archive-group">
{% capture category_name %}{{ category | first }}{% endcapture %}
<div id="#{{ category_name | slugize }}"></div>
<p></p>
<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
<p><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a> - ({{ post.date | date_to_long_string }}) </p>
</article>
{% endfor %}
</div>
{% endfor %}
</div>