-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (40 loc) · 1.91 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
---
layout: default
---
{% include masthead.html %}
<div class="ui segment vertical plugins" style="border-bottom: 0;">
<div v-else class="ui container">
<div class="ui three stackable cards">
{% for post in site.posts %}
<div class="ui raised card" href="{{ post.url | prepend: site.url }}">
<div class="content">
<span class="right floated"><i class="balance scale icon"></i> {% if post.license %}{{ post.license }}{% else %}WTFPL{% endif %}</span>
<div class="header icefont">
<h3><a href="{{ post.url }}" style="color: inherit;">{{ post.title | truncate: 40 }}</a></h3>
</div>
<div class="meta icefont">
<span>by {% if post.author %}{{ post.author }}{% else %}ExtraConcentratedJuice{% endif %}</span>
</div>
<div class="description icefont">
<p>{% if post.description_short %}{{ post.description_short }}{% else %}{{ post.description | strip_html | strip_newlines | truncate: 170 }}{% endif %}</p>
</div>
</div>
<div class="extra content">
<span class="card-button left floated file alternate">
<a href="{{ post.url | prepend: site.url }}" class="icefont">
<i class="file alternate icon"></i>
Documentation
</a>
</span>
<span class="card-button right floated download">
<a href="{{ post.download }}" class="icefont">
<i class="download icon"></i>
Get
</a>
</span>
</div>
</div>
{% endfor %}
</div>
</div>
</div>