jekyll-theme-jt-alpha 0.1.2 → 0.1.3
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/about.html +27 -0
- data/_layouts/artworks.html +29 -0
- data/_layouts/texts.html +28 -0
- metadata +5 -3
- data/_layouts/post.html +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d1df7668e135469f09301e9c25fc813de9a667f
|
4
|
+
data.tar.gz: bd26701b20ee886a7e231cdc44999b4d8e45a595
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a7f0e97a280d30e5eb472b7845897fa7a0aba67e6591cd86b17d7b7360337144d37874841a43ff64fac1b78ee93757d16c6fa96bdcb3455ec0b0bc08ffd0900
|
7
|
+
data.tar.gz: 826a2e63efe378e2dabfafc72b89d0e5ad2ad4ba95af22cf1f02cf0ae241a0b0eae082fdb665846dba967eb47fe8484a7e292ecdab5efa44c7fcaa9a5d3b1cb5
|
data/_layouts/about.html
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="about-wrapper">
|
6
|
+
<section class="about-info">
|
7
|
+
{% if site.data.author.description %}
|
8
|
+
<p>{{ site.data.author.description }}</p>
|
9
|
+
{% endif %}
|
10
|
+
{% if site.data.author.email %}
|
11
|
+
<p><a href="mailto://{{ site.data.author.email }}">{{ site.data.author.email }}</a></p>
|
12
|
+
{% endif %}
|
13
|
+
</section>
|
14
|
+
{% if site.data.author.exhibitions %}
|
15
|
+
<section class="about-exhibitions">
|
16
|
+
<h1>Exhibitions</h1>
|
17
|
+
{% for exgroup in site.data.author.exhibitions %}
|
18
|
+
<h2>{{ exgroup.title }}</h2>
|
19
|
+
<ul>
|
20
|
+
{% for exitem in exgroup.list %}
|
21
|
+
<li>{{ exitem }}</li>
|
22
|
+
{% endfor %}
|
23
|
+
</ul>
|
24
|
+
{% endfor %}
|
25
|
+
</section>
|
26
|
+
{% endif %}
|
27
|
+
</article>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="posts-wrapper artworks-wrapper">
|
6
|
+
<header>
|
7
|
+
<h1>{{page.title}}</h1>
|
8
|
+
</header>
|
9
|
+
<section class="posts-content artworks-content">
|
10
|
+
{% assign sorted_posts = site.posts
|
11
|
+
| where:"categories", page.item
|
12
|
+
| sort:"order"
|
13
|
+
| reverse %}
|
14
|
+
{% if sorted_posts.size > 0 %}
|
15
|
+
<ul class="posts-list artworks-list">
|
16
|
+
{% for post in sorted_posts %}
|
17
|
+
<li>
|
18
|
+
<a href="{{ post.url | prepend:site.baseurl }}">
|
19
|
+
<div class="thumb-image" style="background-image: url('{{ post.thumb | prepend:site.baseurl }}')">{{ post.title }}</div>
|
20
|
+
</a>
|
21
|
+
<a href="{{ post.url | prepend:site.baseurl }}" class="caption">{{post.title}}</a>
|
22
|
+
</li>
|
23
|
+
{% endfor %}
|
24
|
+
</ul>
|
25
|
+
{% else %}
|
26
|
+
<p>There's no post in "{{ page.item }}" yet.</p>
|
27
|
+
{% endif %}
|
28
|
+
</section>
|
29
|
+
</article>
|
data/_layouts/texts.html
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="posts-wrapper texts-wrapper">
|
6
|
+
<header>
|
7
|
+
<h1>{{page.title}}</h1>
|
8
|
+
</header>
|
9
|
+
<section class="posts-content texts-content">
|
10
|
+
{% assign sorted_posts = site.posts
|
11
|
+
| where:"categories","text"%}
|
12
|
+
{% if sorted_posts.size > 0 %}
|
13
|
+
<ul class="posts-list texts-list">
|
14
|
+
{% for post in sorted_posts %}
|
15
|
+
<li>
|
16
|
+
<span class="post-date">{{ post.date | date_to_string }}</span>
|
17
|
+
<a href="{{ post.url | prepend:site.baseurl }}">
|
18
|
+
<span class="post-title">{{post.title}}</span>
|
19
|
+
</a>
|
20
|
+
</li>
|
21
|
+
{% endfor %}
|
22
|
+
</ul>
|
23
|
+
{% else %}
|
24
|
+
<p>There's no post in "{{ page.item }}" yet.</p>
|
25
|
+
{% endif %}
|
26
|
+
</section>
|
27
|
+
</article>
|
28
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-jt-alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- paikwiki
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-04-
|
11
|
+
date: 2018-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -63,11 +63,13 @@ files:
|
|
63
63
|
- README.md
|
64
64
|
- _includes/footer.html
|
65
65
|
- _includes/navigation.html
|
66
|
+
- _layouts/about.html
|
66
67
|
- _layouts/artwork.html
|
68
|
+
- _layouts/artworks.html
|
67
69
|
- _layouts/default.html
|
68
70
|
- _layouts/page.html
|
69
|
-
- _layouts/post.html
|
70
71
|
- _layouts/text.html
|
72
|
+
- _layouts/texts.html
|
71
73
|
- _sass/jekyll-theme-jt-alpha.scss
|
72
74
|
- _sass/jekyll-theme-jt-alpha/_base.scss
|
73
75
|
- _sass/jekyll-theme-jt-alpha/_fonts.scss
|