-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·92 lines (90 loc) · 2.82 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
layout: post-index
title: "Welcome"
description: "A collection of my personal blog posts."
tags: [ccjjmartin, jekyll, responsive, blog, modern]
comments: false
---
{% for post in paginator.posts %}
<article class="hentry">
<header>
{% if post.image.feature %}
<div class="entry-image-index">
<a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">
<img src="{{ site.url }}/images/{{ post.image.feature }}" alt="{{ post.title }}">
</a>
{% if post.image.credit %}
<div class="image-credit">
Image source:
<a target="_blank" href="{{ post.image.creditlink }}">
{{ post.image.credit }}
</a>
</div>
<!-- /.image-credit -->
{% endif %}
</div>
<!-- /.entry-image -->
{% endif %}
<div class="entry-meta">
<span class="entry-date date published updated">
<time datetime="{{ post.date | date_to_xmlschema }}">
<a href="{{ site.url }}{{ post.url }}">
{{ post.date | date: "%B %d, %Y" }}
</a>
</time>
</span>
<span class="author vcard">
<span class="fn">
<a href="{{ site.url }}/about" title="About {{ site.owner.name }}">
{{ site.owner.name }}
</a>
</span>
</span>
{% if site.reading_time %}
<span class="entry-reading-time">
<i class="fa fa-clock-o"></i>
{% assign readtime = post.content | strip_html | number_of_words | divided_by:site.words_per_minute %}
Reading time ~
{% if post.time %}{{ post.time }}
{% elsif readtime <= 1 %}1 minute
{% else %}{{ readtime }} minutes
{% endif %}
</span>
<!-- /.entry-reading-time -->
{% endif %}
</div>
<!-- /.entry-meta -->
{% if post.link %}
<h1 class="entry-title">
<a href="{{ site.url }}{{ post.url }}" class="permalink" rel="bookmark" title="{{ post.title }}">
<i class="fa fa-bookmark"></i>
</a>
<a href="{{ post.link }}">{{ post.title }}</a>
</h1>
{% else %}
<h1 class="entry-title">
<a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">
{{ post.title }}
</a>
</h1>
{% endif %}
</header>
<div class="entry-content">
{% if post.content contains "<!-- more -->" %}
{{ post.content | split:"<!-- more -->" | first % }}
<div align="center">
<div markdown="0">
<a href="{{ site.url }}{{ post.url }}" class="btn btn-info">
Continue Reading ...
</a>
</div>
</div>
{% else %}
{{ post.content }}
{% endif %}
</div>
<!-- /.entry-content -->
</article>
<!-- /.hentry -->
{% endfor %}
{% include pagination.html %}