sutty-minima 2.7.0rc9 → 2.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c701594f6ebcbd103b6605d27878980a668474f76362b980b319757b85547fc4
4
- data.tar.gz: 9f1b9d35f15f0f8743f086849bc0449f561f82b116d4f98a714b51b8b48049e9
3
+ metadata.gz: 571944d78115d106bf3c2128e5db865e9e014dc205dbb614a231e5a59da0eaec
4
+ data.tar.gz: b070d7a3d0f5dcc55225b8d8cb8a7afae08239b15e7a26b4468b2a2f9673fdfb
5
5
  SHA512:
6
- metadata.gz: 7e726a5ba141a861999a7ad63b5ef1cd7742b96f3fb68129cc54fb6e2543414740083d53306dd4157b5fa9558a98b63fff247529dea7b57f1afcfb19de5e296e
7
- data.tar.gz: 0745a2819eaaa7a3a0f52f32e3e620f6bed56bb2f884546e966f5d6113114eec7a31c0ca94a5ed469624cdf960e424d7372ac604cfccc26855e7f05807818aa3
6
+ metadata.gz: b92a3ef8888a5bc68d1ad4e5b74d9e6e93904294d353aafae702820ca1d2e473a86b04b269dadc02b28205cd4f0ec224b839d3b671d271c52283a7099ea482ac
7
+ data.tar.gz: 03bed089b10f98810931611c0b3d0d430b8dfa0ffc5f4704a5c0673e6ef3b2e423d3e47c97ecbfd33cb9219697e1d206caf1539e66a8b61e3c3444970500bcb6
@@ -0,0 +1,74 @@
1
+ {% assign date_format = site.i18n.date.format | default: "%b %-d, %Y" %}
2
+ {% assign license = site.posts | find: "layout", "license" %}
3
+
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+
6
+ <header class="post-header">
7
+ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8
+
9
+ {% if page.description %}
10
+ <div class="p-summary" itemprop="description">
11
+ {{ page.description | allow_inclusive_language_in_markdown | markdownify }}
12
+ </div>
13
+ {% endif %}
14
+
15
+ <p class="post-meta">
16
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
17
+ {{ page.date | date: date_format }}
18
+ </time>
19
+ {%- if page.last_modified_at -%}
20
+ ~
21
+ <time class="dt-modified" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="dateModified">
22
+ {{ page.last_modified_at | date: date_format }}
23
+ </time>
24
+ {%- endif -%}
25
+ {%- unless page.author == empty -%}
26
+ • {% for author in page.author %}
27
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
28
+ <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
29
+ {%- if forloop.last == false %}, {% endif -%}
30
+ {% endfor %}
31
+ {%- endunless -%}</p>
32
+
33
+ {%- if page.image.path -%}
34
+ <img itemprop="image" src="{{ page.image.path }}" alt="{{ page.image.description | default: page.title }}" />
35
+ {%- endif -%}
36
+ </header>
37
+
38
+ {% if page.content_warning %}
39
+ <details>
40
+ <summary>
41
+ {{ site.i18n.cw }}
42
+ {{ page.content_warning }}
43
+ </summary>
44
+
45
+ <div class="post-content e-content" itemprop="articleBody">
46
+ {{ content }}
47
+ </div>
48
+ </details>
49
+ {% else %}
50
+ <div class="post-content e-content" itemprop="articleBody">
51
+ {{ content }}
52
+ </div>
53
+ {% endif %}
54
+
55
+ <footer>
56
+ <a class="u-url" itemprop="url" href="{{ page.url }}" hidden>
57
+ {{ site.url }}{{ page.url }}
58
+ </a>
59
+
60
+ {%- if page.uuid -%}
61
+ <span hidden itemprop="identifier">{{ page.uuid }}</span>
62
+ {%- endif -%}
63
+
64
+ {%- if license -%}
65
+ <p itemprop="license" itemtype="http://schema.org/CreativeWork">
66
+ <a rel="license" itemprop="url" href="{{ license.url }}">
67
+ <span itemprop="articleBody">
68
+ {{ license.description }}
69
+ </span>
70
+ </a>
71
+ </p>
72
+ {%- endif -%}
73
+ </footer>
74
+ </article>
data/_layouts/page.html CHANGED
@@ -2,77 +2,4 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {% assign date_format = site.i18n.date.format | default: "%b %-d, %Y" %}
6
- {% assign license = site.posts | find: "layout", "license" %}
7
-
8
- <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
9
-
10
- <header class="post-header">
11
- <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
12
-
13
- {% if page.description %}
14
- <div class="p-summary" itemprop="description">
15
- {{ page.description | allow_inclusive_language_in_markdown | markdownify }}
16
- </div>
17
- {% endif %}
18
-
19
- <p class="post-meta">
20
- <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
21
- {{ page.date | date: date_format }}
22
- </time>
23
- {%- if page.last_modified_at -%}
24
- ~
25
- <time class="dt-modified" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="dateModified">
26
- {{ page.last_modified_at | date: date_format }}
27
- </time>
28
- {%- endif -%}
29
- {%- unless page.author == empty -%}
30
- • {% for author in page.author %}
31
- <span itemprop="author" itemscope itemtype="http://schema.org/Person">
32
- <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
33
- {%- if forloop.last == false %}, {% endif -%}
34
- {% endfor %}
35
- {%- endunless -%}</p>
36
-
37
- {%- if page.image.path -%}
38
- <img itemprop="image" src="{{ page.image.path }}" alt="{{ page.image.description | default: page.title }}" />
39
- {%- endif -%}
40
- </header>
41
-
42
- {% if page.content_warning == empty %}
43
- <details>
44
- <summary>
45
- {{ site.i18n.cw }}
46
- {{ page.content_warning }}
47
- </summary>
48
-
49
- <div class="post-content e-content" itemprop="articleBody">
50
- {{ content }}
51
- </div>
52
- </details>
53
- {% else %}
54
- <div class="post-content e-content" itemprop="articleBody">
55
- {{ content }}
56
- </div>
57
- {% endif %}
58
-
59
- <footer>
60
- <a class="u-url" itemprop="url" href="{{ page.url }}" hidden>
61
- {{ site.url }}{{ page.url }}
62
- </a>
63
-
64
- {%- if page.uuid -%}
65
- <span hidden itemprop="identifier">{{ page.uuid }}</span>
66
- {%- endif -%}
67
-
68
- {%- if license -%}
69
- <p itemprop="license" itemtype="http://schema.org/CreativeWork">
70
- <a rel="license" itemprop="url" href="{{ license.url }}">
71
- <span itemprop="articleBody">
72
- {{ license.description }}
73
- </span>
74
- </a>
75
- </p>
76
- {%- endif -%}
77
- </footer>
78
- </article>
5
+ {%- include post.html page=page %}
data/_layouts/post.html CHANGED
@@ -2,77 +2,4 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {% assign date_format = site.i18n.date.format | default: "%b %-d, %Y" %}
6
- {% assign license = site.posts | find: "layout", "license" %}
7
-
8
- <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
9
-
10
- <header class="post-header">
11
- <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
12
-
13
- {% if page.description %}
14
- <div class="p-summary" itemprop="description">
15
- {{ page.description | allow_inclusive_language_in_markdown | markdownify }}
16
- </div>
17
- {% endif %}
18
-
19
- <p class="post-meta">
20
- <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
21
- {{ page.date | date: date_format }}
22
- </time>
23
- {%- if page.last_modified_at -%}
24
- ~
25
- <time class="dt-modified" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="dateModified">
26
- {{ page.last_modified_at | date: date_format }}
27
- </time>
28
- {%- endif -%}
29
- {%- unless page.author == empty -%}
30
- • {% for author in page.author %}
31
- <span itemprop="author" itemscope itemtype="http://schema.org/Person">
32
- <span class="p-author h-card" itemprop="name">{{ author }}</span></span>
33
- {%- if forloop.last == false %}, {% endif -%}
34
- {% endfor %}
35
- {%- endunless -%}</p>
36
-
37
- {%- if page.image.path -%}
38
- <img itemprop="image" src="{{ page.image.path }}" alt="{{ page.image.description | default: page.title }}" />
39
- {%- endif -%}
40
- </header>
41
-
42
- {% if page.content_warning == empty %}
43
- <div class="post-content e-content" itemprop="articleBody">
44
- {{ content }}
45
- </div>
46
- {% else %}
47
- <details>
48
- <summary>
49
- {{ site.i18n.cw }}
50
- {{ page.content_warning }}
51
- </summary>
52
-
53
- <div class="post-content e-content" itemprop="articleBody">
54
- {{ content }}
55
- </div>
56
- </details>
57
- {% endif %}
58
-
59
- <footer>
60
- <a class="u-url" itemprop="url" href="{{ page.url }}" hidden>
61
- {{ site.url }}{{ page.url }}
62
- </a>
63
-
64
- {%- if page.uuid -%}
65
- <span hidden itemprop="identifier">{{ page.uuid }}</span>
66
- {%- endif -%}
67
-
68
- {%- if license -%}
69
- <p itemprop="license" itemtype="http://schema.org/CreativeWork">
70
- <a rel="license" itemprop="url" href="{{ license.url }}">
71
- <span itemprop="articleBody">
72
- {{ license.description }}
73
- </span>
74
- </a>
75
- </p>
76
- {%- endif -%}
77
- </footer>
78
- </article>
5
+ {%- include post.html page=page %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sutty-minima
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0rc9
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - f
@@ -140,6 +140,7 @@ files:
140
140
  - _includes/google-analytics.html
141
141
  - _includes/head.html
142
142
  - _includes/header.html
143
+ - _includes/post.html
143
144
  - _includes/social.html
144
145
  - _layouts/code_of_conduct.html
145
146
  - _layouts/default.html
@@ -175,9 +176,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
175
176
  version: '0'
176
177
  required_rubygems_version: !ruby/object:Gem::Requirement
177
178
  requirements:
178
- - - ">"
179
+ - - ">="
179
180
  - !ruby/object:Gem::Version
180
- version: 1.3.1
181
+ version: '0'
181
182
  requirements: []
182
183
  rubygems_version: 3.3.26
183
184
  signing_key: