-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (93 loc) · 3.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: default
title: Le Blog de la Société TreeptiK | Cloud Computing | Développement Java EE | Virtualisation
---
<section id="main-content">
{% for post in paginator.posts %}
<article>
<div class="date-sp-wrap">
<div class="blog-date-sp">
<h3>{{ post.date | date: "%d" }}</h3><span>{{ post.date | date: "%m" }}<br>{{ post.date | date: "%Y" }}</span>
</div>
</div>
<div class="ten columns omega blog-post">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div class="postmetadata">
<h6 class="blog-author"><strong>par</strong> {{ post.author }} </h6>
<h6 class="blog-author"><strong>tags: </strong>
{% for tag in post.tags %}
<a href="{{ site.url }}/tags.html#{{ tag }}">{{ tag }}</a>
{% endfor %}
</h6>
</div>
<!-- Bloc pour mettre une image a coté de l'article
<div class="four columns alpha blog2-img">
<img src="images/blog-post-pic1-2.jpg">
</div>-->
<div class="ten columns omega">
<p>{{ post.description }}</p>
<a href="{{ post.url }}" class="readmore">lire la suite</a>
</div>
</div>
</article>
{% endfor %}
<br class="clear">
<div class="pagination2 pagination2-centered">
<ul>
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<li><a href='/' class='newer'>«</a></li>
{% else %}
<a href="{{ paginator.previous_page_path }}" class='newer'>«</a></li>
{% endif %}
{% else %}
<li class="disabled"><a href='/' class='newer'>«</a></li>
{% endif %}
{% if paginator.page == 1 %}
<li class="active"><a href="#">1</a></li>
{% else %}
<li><a href="/">1</a></li>
{% endif %}
{% for count in (2..paginator.total_pages) %}
{% if count == paginator.page %}
<li class="active"><a href="#">{{ count }}</a></li>
{% else %}
<li><a href="/page{{ count }}">{{ count }}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li> <a href="{{ paginator.next_page_path }}" class='older'>»</a></li>
{% else %}
<li class="disabled"><a href='/' class='older'>»</a></li>
{% endif %}
</ul>
</div>
<div class="white-space"></div>
</section><!-- end-main-content -->
<section id="sidebar">
<div><input name="" type="text" placeholder="Recherchez ..." class="search-side" ></div>
<h4 class="subtitle">Tags</h4>
<ul>
{% for tag in site.tags %}
<li class="tag-box"><a href="{{ site.url }}/tags.html#{{ tag | first | cgi_encode }}">{{ tag | first }}</a></li>
{% endfor %}
</ul>
<br class="clear">
<h4 class="subtitle">Archives</h4>
<div class="listbox1">
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div><!-- end-listbox1 -->
<br class="clear">
<br/>
<br/>
<a class="follow-box" href="https://twitter.com/treeptikteam">
<h4>Suivez <strong>@treeptikTeam</strong></h4>
</a>
<br class="clear">
</section><!-- end-sidebar-->