-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
52 lines (46 loc) · 1.72 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
---
layout: default
---
<div class="page-content">
<div class="wrapper">
<div class="home">
<h1 class="page-heading">
</h1>
<section>
<ul class="post-list">
{% for post in site.posts %}
{% assign author = site.data.authors[post.author_id] %}
<li>
<article class="post-item {{ post.author_id }}">
<div class="post-author-info">
<div class="post-author-image">
<a href="https://github.com/{{author.github}}" target="_blank">
<img class="post-author-avatar" src="/images/{{author.image}}" alt="{{author.display_name}}">
</a>
</div>
<span class="post-author-name"><span class='visible-on-palm'>by </span><a href="{{author.profile_url}}" target="_blank">{{ author.display_name }}</a></span>
</div>
<div class="post-time-info">
<time class="post-meta" datetime="{{ post.date }}">
{{ post.date | date: "%b %-d, %Y" }}
</time>
</div>
<div class="post-info">
<h1 class="post-title">
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h1>
<h2>
{{ post.description }}
</h2>
</div>
<div class="clear">
</div>
</article>
</li>
{% endfor %}
</ul>
</section>
<p class="rss-subscribe text-center">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
</div>
</div>