Skip to content

Commit f393b67

Browse files
committed
up
1 parent 4af7d8d commit f393b67

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ include:
3030
exclude:
3131
- README.md
3232
- _snippets/README.md
33+
- _data/showcase/README.md
3334
- attic
3435

3536

showcase/index.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: Showcase - The World's Greatest Jekyll Static Sites
3+
---
4+
5+
<h1>{{ page.title }}</h1>
6+
7+
8+
<div class='showcase'>
9+
{% for showcase in site.data.showcase.showcase %}
10+
<div class='showcase'>
11+
<div class='showcase-live'>
12+
<a href="{{ showcase.live }}">
13+
<img src="{{site.path}}/_data/showcase/thumbnails/{{showcase.thumbnail}}">
14+
</a>
15+
</div>
16+
<div class='showcase-info'>
17+
<b>{{ showcase.title }}</b> -
18+
{{ showcase.subtitle }}
19+
<br>
20+
<a href="{{ showcase.live }}">[Live]</a>
21+
<a href="{{ showcase.source }}">[Source]</a>
22+
</div>
23+
</div>
24+
{% endfor %}
25+
</div>

showcase/list/index.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Jekyll Showcase Listing
3+
---
4+
5+
<h1>{{ page.title }}</h1>
6+
7+
<table>
8+
{% for showcase in site.data.showcase.showcase %}
9+
<tr>
10+
<td><b>{{ showcase.title }}</b></td>
11+
<td>{{ showcase.subtitle }}</td>
12+
<td>{{ showcase.thumnail }}</td>
13+
</tr>
14+
<tr>
15+
<td colspan='3'>
16+
<ul>
17+
<li>live: <a href="{{ showcase.live }}">{{ showcase.live }}</a></li>
18+
<li>source: <a href="{{ showcase.source }}">{{ showcase.source }}</a></li>
19+
</ul>
20+
</td>
21+
</tr>
22+
{% endfor %}
23+
</table>

0 commit comments

Comments
 (0)