-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnews.html
More file actions
34 lines (25 loc) · 790 Bytes
/
Copy pathnews.html
File metadata and controls
34 lines (25 loc) · 790 Bytes
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
---
layout: default
title: Heavycoin news
name: news
---
<div class="container">
<div class="well well-main well-news">
{% for post in site.posts %}
<div class="items-row cols-1 row-0 row-fluid">
<div class="span12">
<div class="item column-1">
<h2><a href="#">{{ post.title }}</a></h2>
<i class="fa fa-calendar pull-left"></i>
<p>{{ post.date | date_to_long_string }}</p>
<div class="news-item-content">
{{ post.content }}
</div>
</div>
<div class="page-header"></div>
</div><!-- end item -->
</div><!-- end spann -->
{% endfor %}
</div>
</div>
</div>