forked from davejonathangoldberg/api-report
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·31 lines (26 loc) · 1017 Bytes
/
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
---
layout: default
title: The API Report
---
{% for post in site.posts limit:25 %}
<!-- Default post with image -->
<article class="post default">
<section class="main clear">
<p><a href="{{ post.url }}"><img style="padding: 15px;" src="{{ post.image }}" alt="{{ post.title }}" align="left" width="225" /></a></p>
<p class="mytitle"><a href="{{ post.url }}" title="Featured article">{{ post.title }}</a></p>
<div class="content">
<p>{{ post.content | strip_html | truncatewords: 150 }} <a href="{{ post.url }}" class="more">Read more</a></p>
</div>
</section>
<ul class="meta">
<li class="date"><a href="#_">{{ post.date | date:"%m-%d-%Y" }}</a></li>
<!---<li class="category"><a href="#_">Category one</a>, <a href="#_">two</a></li>-->
</ul>
</article>
<!-- // Default post with image -->
{% endfor %}
<!-- Pagination -->
<div class="pagination">
<a href="/blog/1/" class="right">all posts</a>
</div>
<!-- // Pagination -->