-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnew.html
40 lines (34 loc) · 975 Bytes
/
new.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: page
title: "Newest"
---
{% assign top_themes = site.data.o.themes | sort: "created" | reverse %}
<table>
{% for theme in top_themes limit:11 %}
<tr>
<td>
<span title="Last Update: {{ theme.updated | date: '%B %d, %Y' }} ++ {{ theme.commit_msg }}">
{{ theme.created | date: '%B %d, %Y' }}
</span>
</td>
<td>
<div>
<a href="{{ theme.home_url }}">
<img height="100" src="/themes/thumbnails/{{theme.thumbnail}}">
</a>
</div>
</td>
<td>
<div>
<a href="{{ theme.home_url }}"><b>{{ theme.name }}</b></a>
{% include theme_stars.html theme=theme %}
by
{% include author.html author=theme.author %}
(License: {{ theme.license }})
<br>
{% include theme_links.html theme=theme %}
</div>
</td>
</tr>
{% endfor %}
</table>