This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 2.17 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
---
layout: default
---
<!-- Posts -->
<div class="row container our-blog">
<h1 class="center-align">OUR BLOG</h1>
<div class="col s12" id="wrap">
<form action="" autocomplete="on">
<input id="search" name="search" type="text" placeholder="What're you looking for ?">
<input id="search_submit" value="Rechercher" type="submit">
</form>
</div>
<ul id="posts">
{% for post in paginator.posts %}
<li>
<article>
<div class="post-container col s12">
<div class="post">
<div class="hovered-block">
<div class="post-image col s12 m6"><img class="responsive-img" src="{{ post.image }}"></div>
<div class="post-title col s12 m6">
<h3>{{ post.title }}</h3>
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
<p>
{{ post.content | strip_html | truncatewords:20 }}
</p>
</div>
</div>
<div class="hovered-buttons col s12">
<div class="facebook same-style-button"><i class=""><img src="images/fb_black.png" alt=""></i><a href="https://www.facebook.com/titanium.moldova/?fref=ts" target="_blank">Facebook</a></div>
<div class="instagram same-style-button"><i class=""><img src="images/insta_black.png" alt=""></i><a href="https://www.instagram.com/titanium.codes" target="_blank">Instagram</a></div>
<div class="read-more same-style-button"><i class="material-icons">visibility</i><a href="{% if site.baseurl == '/' %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">Read More</a></div>
</div>
</div>
</div>
</article>
</li>
{% endfor %}
</ul>
</div>