-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtop.html
42 lines (34 loc) · 892 Bytes
/
top.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
---
layout: page
title: "Top 22"
---
{% assign top_themes = site.data.o.themes | sort: "stars" | reverse %}
<table>
{% for theme in top_themes limit:22 %}
<tr>
<td>
<span style="font-size: 300%">{{ forloop.index }}.</span>
</td>
<td>
{% include theme_stars.html theme=theme %}
</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>
by
{% include author.html author=theme.author %}
(License: {{ theme.license }})
<br>
{% include theme_links.html theme=theme %}
</div>
</td>
</tr>
{% endfor %}
</table>