-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (44 loc) · 1.62 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
---
layout: page
title:
description: "Converted the Required theme for WordPress to Jekyll"
tags: [Satellite, web development, WordPress, Jekyll, theme development, JavaScript, training]
---
{% for post in site.posts %}
<article class="post type-post status-publish format-standard sticky hentry clearfix">
<header>
<h1 class="entry-title">
<a href="{{ site.url }}{{ post.url }}">
{{ post.title }}
</a>
</h1><!-- /.entry-title -->
<div class="post-meta">
<span class="post-date">
{{ post.date | date: "%B %e, %Y" }}
</span><!-- /.post-date -->
{% if site.disqus_shortname and post.comments %}
|
<span class="comment-link">
<a href="#disqus_thread">Comment</a>
</span>
{% endif %}
</div><!-- /.post-meta -->
</header>
{% if post.image.feature %}
<figure class="featured-image">
<img width="480" height="396" src="{{ site.url }}/images/{{ post.image.feature }}" class="attachment-post-thumbnail wp-post-image" alt="{{ post.title }}">
</figure><!-- /.featured-image -->
{% endif %}
<div class="entry-content clearfix">
{{ post.excerpt }}
</div><!-- /.entry-content -->
<footer class="post-footer">
{% if post.tags != empty %}
<span class="tag-links">
Tagged
{% for tag in post.tags %}<a href="{{ site.url }}/tags/#{{ tag | cgi_encode }}" title="Posts tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}
</span>
{% endif %}
</footer>
</article>
{% endfor %}