-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (67 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
title: 'ForEvolve Home'
description: 'A piece of mind...'
hide-page-header: true
---
<div class="post-list-container">
<section class="post-list">
{% for post in paginator.posts %}
{%- include post-preview.html post=post -%}
<hr />
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">
← Newer Posts
<small>{{ paginator.title }}</small>
</a>
</li>
{% endif %} {% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">
Older Posts →
<small>{{ paginator.title }}</small>
</a>
</li>
{% endif %}
</ul>
{% endif %}
</section>
<section class="side-bar hidden-xs">
{%- include buy-net5-book.html -%}
<aside class="tags">
<h4>Tags</h4>
<ul>
{% include gen-tags.html %} {% for tag in tags %}
<li>
<a href="/tags/#{{ tag | slugify }}"> {{ tag }} </a>
</li>
{% endfor %}
</ul>
</aside>
<aside class="proficiency-levels">
<h4>Proficiency levels</h4>
<ul>
{% for lvl in site.data.proficiency-levels %} {% assign level = lvl[1] %} {% assign postCount = 0 %}
<li>
<a href="/levels/#proficiency-level-{{ level.name | slugify }}"> {{ level.name }} </a>
</li>
{% endfor %}
</ul>
</aside>
<aside class="language">
<h4>Languages</h4>
<ul>
<li><a href="/languages/#en-articles">English</a></li>
<li><a href="/languages/#fr-articles">Français</a></li>
</ul>
</aside>
<aside class="social">
<h4>{{ site.follow-me-label }}</h4>
{%- include social-list.html hide-follow-me-text=true -%}
</aside>
</section>
</div>