-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
40 lines (35 loc) · 1.56 KB
/
project.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
---
layout: default
robots: noindex
---
<div class="main-post-list">
<br/>
<ol class="post-list">
{% for post in site.posts %}
{% if post.title != "About" %}
<div style="height:auto">
<div style="width:17%;float: left">
<a href="{{ site.baseurl }}{{ post.url }}"><img src="./images/posts/{{ post.url}}/thumbnail.png" alt="" style="max-width:100%; max-height:100%;" /></a>
</div>
<div style="width:80%;float: right">
<li>
<h2 class="post-list__post-title post-title"><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<p class="excerpt">{{ post.excerpt | strip_html }}…</p>
<div class="post-list__meta">
<span class="post-meta__tags" style="font-size:0.8em;color:gray">{{ post.where }}</span>
• <time datetime="{{ post.date | date: "%Y-%m-%d %H:%M" }}" class="post-list__meta--date date">{{ post.date | date: "%b %Y" }}</time>
{% if post.tags.size > 0 %}
• <span class="post-meta__tags" style="font-size:0.8em;">{% for tag in post.tags %}<a href="{{ site.baseurl }}/tags/#{{ tag }}">{{ tag }}</a>{% if forloop.last == false %}, {% endif %}{% endfor %}</span>
{% endif %}
</div>
</li>
</div>
</div>
<hr class="post-list__divider">
{% endif %}
{% endfor %}
</ol>
{% if paginator.previous_page or paginator.next_page %}
{% include pagination.html %}
{% endif %}
</div>