forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (25 loc) · 1.1 KB
/
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
32
33
34
35
36
37
---
layout: default
published: true
---
<!-- <div class="posts">
{% for post in site.posts %}
<article class="post">
{% if post.blob == null %}
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt | truncatewords:160 }}<p>…<a href="{{ site.baseurl }}{{ post.url }}" class="read-more"> read more</a></p>
</div>
<div class="date" align="left">{{ post.date | date: "%B %e, %Y" }}—{% capture time %}{{ post.content | reading_time }}{% endcapture %}{{ time }} min</div>
{% elsif post.blob != null %}
<h1><a href="{{ post.blob }}">{{ post.title }}</a></h1>
{{ post.content }}
<p>…<a href="{{ site.baseurl }}{{ post.url }}" class="read-more"> read more</a></p>
<div class="date" align="left">{{ post.date | date: "%B %e, %Y" }}</div>
{% endif %}
</article>
{% endfor %}
</div> -->
<!-- {% if post.featured-image %}
<center><a href="{{ post.url }}"><img src="{{ post.featured-image }}" height="400" width="250"/></a></center>
{% endif %} -->