This repository was archived by the owner on Aug 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
64 lines (53 loc) · 2 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
---
layout: default
---
{% assign home_thumbs = site.pages | where_exp:"p","p.home-icon" | sort:"tab"%}
<div class="home">
<table class='icon-table'>
<tr>
{% for page in home_thumbs %}
<td>
{% if page.home-icon %}
<a href='{{page.url}}'>
<div class='icon-box'>
<div class='top'><i class="fa fa-inverse fa-{{page.home-icon}}"></i></div>
<div class='bottom'>{{page.tab}}</div>
</div>
</a>
{% endif %}
</td>
{% endfor %}
</tr>
</table>
<br/>
{% assign releases = site.data.releases | sort: 'published_at' | reverse %}
{% assign release = releases | first %}
{% assign prev_release = releases | shift | first %}
{% assign release_tag = site.data.tags | where_exp:'p','p.name == release.tag_name' | first %}
<h1>Latest Release: {{release.tag_name}}</h1>
Released: {{release.published_at | date: "%b %-d, %Y" }}
<br/>
Sources: <a href='https://github.com/stlab/libraries/compare/{{prev_release.tag_name}}...{{release.tag_name}}'>changes</a> | <a href='{{release.zipball_url}}'>zipball</a> | <a href='{{release.tarball_url}}'>tarball</a>
<br/>
Changes: {{release.body | markdownify}}
For older releases, the full list is available <a href='https://github.com/stlab/libraries/releases'>on GitHub</a>.
<h1>Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
{% if post.categories contains 'release' %}
{% continue %}
{% endif %}
{% if post.hidden %}
{% continue %}
{% endif %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | markdownify }}</a>
</h2>
{{ post.excerpt | markdownify }}
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href='{{ "/feed.xml" | prepend: site.baseurl }}'>via RSS</a></p>
</div>