sutty-minima 2.6.1 → 2.6.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/_includes/footer.html +3 -3
- data/_layouts/code_of_conduct.html +2 -2
- data/_layouts/license.html +2 -2
- data/_layouts/privacy_policy.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acaef25796fdec8dec585b8ec1f62da5f34610617aa5a1a02eaa3f18cc7936c9
|
|
4
|
+
data.tar.gz: 5f7892407709fa88ee846d611876fbcb7ad7c0fd31684ce448284fb7ee809914
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59ab3657fe6489b356a77b6f1cebec332855bf256e6eb0cccc311832b231a8e93fca4b77d404be1a95c5abf751e43b19fe814eb8b2f9912883986623853f7e6c
|
|
7
|
+
data.tar.gz: af6b71fa3f21740b1451effd0f0e9eb485398220e3435c456b6061c0b6977ca6d98fbc768d382ccd57bc466a0a62823089cc7d1054efb058d7495bb12c323c32
|
data/_includes/footer.html
CHANGED
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
{%- endif %}
|
|
26
26
|
|
|
27
27
|
{% if license %}
|
|
28
|
-
<a href="{{ license.url }}" rel="license">{{ license.title }}</a>
|
|
28
|
+
<li><a href="{{ license.url }}" rel="license">{{ license.title }}</a></li>
|
|
29
29
|
{% endif %}
|
|
30
30
|
|
|
31
31
|
{% if code_of_conduct %}
|
|
32
|
-
<a href="{{ code_of_conduct.url }}" rel="code-of-conduct">{{ code_of_conduct.title }}</a>
|
|
32
|
+
<li><a href="{{ code_of_conduct.url }}" rel="code-of-conduct">{{ code_of_conduct.title }}</a></li>
|
|
33
33
|
{% endif %}
|
|
34
34
|
|
|
35
35
|
{% if privacy_policy %}
|
|
36
|
-
<a href="{{ privacy_policy.url }}" rel="privacy-policy">{{ privacy_policy.title }}</a>
|
|
36
|
+
<li><a href="{{ privacy_policy.url }}" rel="privacy-policy">{{ privacy_policy.title }}</a></li>
|
|
37
37
|
{% endif %}
|
|
38
38
|
</ul>
|
|
39
39
|
</div>
|
|
@@ -13,14 +13,14 @@ layout: default
|
|
|
13
13
|
{%- endif -%}
|
|
14
14
|
|
|
15
15
|
<p>
|
|
16
|
-
{{ site.i18n.published_at }}
|
|
16
|
+
{{ site.i18n.date.published_at }}
|
|
17
17
|
|
|
18
18
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
19
19
|
{{ page.date | date_local: date_format }}
|
|
20
20
|
</time>
|
|
21
21
|
|
|
22
22
|
{% if page.last_modified_at %}
|
|
23
|
-
{{ site.i18n.last_modified_at }}
|
|
23
|
+
{{ site.i18n.date.last_modified_at }}
|
|
24
24
|
|
|
25
25
|
<time class="dt-published" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="datePublished">
|
|
26
26
|
{{ page.last_modified_at | date_local: date_format }}
|
data/_layouts/license.html
CHANGED
|
@@ -13,14 +13,14 @@ layout: default
|
|
|
13
13
|
{%- endif -%}
|
|
14
14
|
|
|
15
15
|
<p>
|
|
16
|
-
{{ site.i18n.published_at }}
|
|
16
|
+
{{ site.i18n.date.published_at }}
|
|
17
17
|
|
|
18
18
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
19
19
|
{{ page.date | date_local: date_format }}
|
|
20
20
|
</time>
|
|
21
21
|
|
|
22
22
|
{% if page.last_modified_at %}
|
|
23
|
-
{{ site.i18n.last_modified_at }}
|
|
23
|
+
{{ site.i18n.date.last_modified_at }}
|
|
24
24
|
|
|
25
25
|
<time class="dt-published" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="datePublished">
|
|
26
26
|
{{ page.last_modified_at | date_local: date_format }}
|
|
@@ -13,13 +13,13 @@ layout: default
|
|
|
13
13
|
{%- endif -%}
|
|
14
14
|
|
|
15
15
|
<p>
|
|
16
|
-
{{ site.i18n.published_at }}
|
|
16
|
+
{{ site.i18n.date.published_at }}
|
|
17
17
|
|
|
18
18
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
19
19
|
{{ page.date | date_local: date_format }}
|
|
20
20
|
</time>
|
|
21
21
|
|
|
22
|
-
{% if page.last_modified_at %}
|
|
22
|
+
{% if page.date.last_modified_at %}
|
|
23
23
|
{{ site.i18n.last_modified_at }}
|
|
24
24
|
|
|
25
25
|
<time class="dt-published" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="datePublished">
|