-
Notifications
You must be signed in to change notification settings - Fork 204
/
allnews.html
37 lines (37 loc) · 1.2 KB
/
allnews.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
---
layout: default
title: OBO
---
{% 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="{{ 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.baseurl }}{{ 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 %}