forked from kinlane/dev-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
executable file
·25 lines (19 loc) · 913 Bytes
/
blog.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
---
layout: default
title: "Developers portal"
published: true
---
<h1 class="title">Developers portal blog</h1>
{% for post in site.posts limit:5000 %}
<div class="post">
<p><a href="{{ site.baseurl }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" style="color:#000;">
<h4><strong>{{ post.title }}</strong></h4></a>
<p><i><strong><span class="small">Posted on</span> <span class="post-date">{{ post.date | date:"%m-%d-%Y" }}</span></strong></i>
</p>
<p><a href="{{ site.baseurl }}{{ post.url }}" rel="bookmark" title="{{ post.title }}">
<img src="{{ post.image }}" width="150" align="right" style="padding: 15px;"/></a></p>
<p>{{ post.content | strip_html | truncatewords: 100 }}...<a href="{{ site.baseurl }}{{ post.url }}" rel="bookmark" title="{{ post.title }}"style="color:#000; font-weight: bold;">read more</a>.</p>
<br/>
<hr/>
</div>
{% endfor %}