-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.14 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
---
layout: layout
title: "Dcu"
---
<p></p>
{% for post in site.posts offset: 0 limit: 50 %}
<div class="row">
<div class="span7">
<div class="row">
<div class="span2 hidden-phone hidden-tablet">
<a href="{{ post.url }}" >
<img class="listImage img-rounded" border="0" src="/img/posts/{{ post.image }}" alt="{{ post.title }} image">
</a>
</div>
<div class="span5">
<h4><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></h4>
<p>
{{ post.summary }}
</p>
<p>
<i class="icon-calendar"></i> {{ post.date | date: "%B %e, %Y" }}
| <i class="icon-comment"></i> <a href="{{ site.url }}{{ post.url }}#disqus_thread"></a>
<br />
<i class="icon-tags"></i> Tags :{% for tag in post.tags %} <a href="/tags/{{ tag }}" rel="tooltip" title="View posts tagged with "{{ tag }}""><span class="label label-info">{{ tag }}</span></a> {% if forloop.last != true %} {% endif %} {% endfor %}
</p>
<p><a href="{{ post.url }}">Read more</a></p>
</div>
</div>
<hr>
</div>
</div>
{% endfor %}