-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathblog.html
More file actions
31 lines (30 loc) · 808 Bytes
/
blog.html
File metadata and controls
31 lines (30 loc) · 808 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
---
layout: default
title: Blog | Codebrahma
permalink: blog/
nav: blog
meta: Blog of Codebrahma
---
<div id="home">
<div class="grid">
<div class="unit">
<!-- The name of the blog goes here -->
<!-- FIXME : Change the name of the blog once confirmed -->
<p class="upcase">the innovators arena</p>
</div>
<div class="posts">
{% for post in site.posts %}
<div class="unit one-fifth">
<span>{{ post.date | date_to_string }}</span>
</div>
<div class="unit four-fifths preview-post">
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div class="preview-content">
{{ post.content | strip_html | truncatewords: 50 }}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>