enzanki-website-template 1.2.3 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_layouts/{htmlapi.html → base.html} +0 -0
- data/_layouts/blank.html +1 -0
- data/_layouts/category.html +28 -0
- data/_layouts/default.html +4 -3
- data/_layouts/post.html +6 -6
- data/_layouts/youtube-upload.html +3 -8
- data/_layouts/ytpost.html +3 -8
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db56908cef0ee9707a746cae9bf31e65690c5c37
|
|
4
|
+
data.tar.gz: dc7a39c45bb5053cdd1907958625bd8fcfff392b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 920db3e8b1e991277a0e89da3d35555343af122af54c5908e419e16e575b4ccf15472a855b60924690626ebdad7ff983bcb802e93e538817860089a0325ee4fe
|
|
7
|
+
data.tar.gz: acd3e8a2068a075273d329fe55f8b1c3a3fda9bda1dbe99c10646ab71302774642d8a6c595c533f1dee531ad6b367662e0afb8eb23d16a25d42ae07d0b611462
|
|
File without changes
|
data/_layouts/blank.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{{ content }}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<h2>Category - {{page.category}}</h2>
|
|
6
|
+
|
|
7
|
+
<div class="table-responsive">
|
|
8
|
+
<table class="table table-striped">
|
|
9
|
+
<thead>
|
|
10
|
+
<tr>
|
|
11
|
+
<th>Date</th>
|
|
12
|
+
<th>Title</th>
|
|
13
|
+
</tr>
|
|
14
|
+
</thead>
|
|
15
|
+
<tbody>
|
|
16
|
+
{% for post in site.categories[page.category] %}
|
|
17
|
+
<tr>
|
|
18
|
+
<td>
|
|
19
|
+
{{ post.date | date: "%A, %B %d, %Y" }}
|
|
20
|
+
</td>
|
|
21
|
+
<td>
|
|
22
|
+
<a href="{{ post.url | prepend: site.github.url }}">{{ post.title }}</a>
|
|
23
|
+
</td>
|
|
24
|
+
</tr>
|
|
25
|
+
{% endfor %}
|
|
26
|
+
</tbody>
|
|
27
|
+
</table>
|
|
28
|
+
</div>
|
data/_layouts/default.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
3
5
|
{% include postheader.html %}
|
|
4
6
|
{% include postpages.html %}
|
|
5
|
-
|
|
7
|
+
|
|
6
8
|
{{ content }}
|
|
7
|
-
|
|
9
|
+
|
|
8
10
|
{% include postpages.html %}
|
|
9
|
-
{% include footer.html %}
|
|
10
|
-
{% include htmlfooter.html %}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
{% include postpages.html %}
|
|
1
|
+
---
|
|
2
|
+
layout: post
|
|
3
|
+
---
|
|
5
4
|
|
|
6
5
|
{% include ytblock.html %}
|
|
7
6
|
|
|
@@ -10,7 +9,3 @@
|
|
|
10
9
|
<hr />
|
|
11
10
|
|
|
12
11
|
{{ content }}
|
|
13
|
-
|
|
14
|
-
{% include postpages.html %}
|
|
15
|
-
{% include footer.html %}
|
|
16
|
-
{% include htmlfooter.html %}
|
data/_layouts/ytpost.html
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
{% include postpages.html %}
|
|
1
|
+
---
|
|
2
|
+
layout: post
|
|
3
|
+
---
|
|
5
4
|
|
|
6
5
|
{% include ytblock.html %}
|
|
7
6
|
|
|
8
7
|
{{ content }}
|
|
9
|
-
|
|
10
|
-
{% include postpages.html %}
|
|
11
|
-
{% include footer.html %}
|
|
12
|
-
{% include htmlfooter.html %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: enzanki-website-template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Shafer
|
|
@@ -71,8 +71,10 @@ files:
|
|
|
71
71
|
- _includes/reportissue.html
|
|
72
72
|
- _includes/youtube-embed.html
|
|
73
73
|
- _includes/ytblock.html
|
|
74
|
+
- _layouts/base.html
|
|
75
|
+
- _layouts/blank.html
|
|
76
|
+
- _layouts/category.html
|
|
74
77
|
- _layouts/default.html
|
|
75
|
-
- _layouts/htmlapi.html
|
|
76
78
|
- _layouts/post.html
|
|
77
79
|
- _layouts/revealjs.html
|
|
78
80
|
- _layouts/youtube-upload.html
|