File tree 3 files changed +49
-0
lines changed
3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ include:
30
30
exclude :
31
31
- README.md
32
32
- _snippets/README.md
33
+ - _data/showcase/README.md
33
34
- attic
34
35
35
36
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments