sutty-minima 2.6.0 → 2.6.2
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/_data/layouts/theme.yml +50 -0
- data/_includes/footer.html +16 -3
- data/assets/css/style.scss +3 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab476faab4d74525f1a21cc0ffab805dde8898e03e0918b1c8d5145e4f0e33be
|
4
|
+
data.tar.gz: 34ab87dee3122e4993376e883bc55fde254f9e516a6e39f7f3821997f7c857ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb290c25f9568b704914f33d70a996f039e129cffcbc0fe33335efa5eebaee7bdcf9a8078bbb57283c41fa69cefa731c3328fb15b4447f88324205f7e1e2a0ae
|
7
|
+
data.tar.gz: e088788a242a32b50cdacd430ee20008f04ead079637b32adc68a8d4a0ab41f7ba3e8a4809452bc33e0945f3de2043972afcfdaef27b11ba845e432936e280e9
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: "string"
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
en: "Title"
|
7
|
+
es: "Título"
|
8
|
+
help:
|
9
|
+
en: "The name you want to give to this customization"
|
10
|
+
es: "El nombre que quieras darle a esta personalización"
|
11
|
+
skin:
|
12
|
+
type: "predefined_value"
|
13
|
+
label:
|
14
|
+
en: "Select a color scheme for your site"
|
15
|
+
es: "Selecciona una paleta de colores para tu sitio"
|
16
|
+
help:
|
17
|
+
en: ""
|
18
|
+
es: ""
|
19
|
+
default:
|
20
|
+
en: "classic"
|
21
|
+
es: "classic"
|
22
|
+
values:
|
23
|
+
en:
|
24
|
+
"": "Default"
|
25
|
+
classic: "Classic"
|
26
|
+
dark: "Dark"
|
27
|
+
solarized-dark: "Solarized Dark"
|
28
|
+
solarized: "Solarized"
|
29
|
+
es:
|
30
|
+
"": "Default"
|
31
|
+
classic: "Clásico"
|
32
|
+
dark: "Oscuro"
|
33
|
+
solarized-dark: "Solarizado oscuro"
|
34
|
+
solarized: "Solarizado"
|
35
|
+
draft:
|
36
|
+
type: "boolean"
|
37
|
+
label:
|
38
|
+
es: "Borrador"
|
39
|
+
en: "Draft"
|
40
|
+
help:
|
41
|
+
es: "Al activar \"Borrador\" este contenido se mantendrá disponible en el panel, pero no se publica en el sitio como los demás contenidos al tocar \"Publicar todos los cambios\""
|
42
|
+
en: "By activating \"Draft\", this content will remain available on the dashboard, but will not be published on the site when you tap \"Publish all changes\" (other content which does not have this option selected will)."
|
43
|
+
order:
|
44
|
+
type: "order"
|
45
|
+
label:
|
46
|
+
es: "Orden"
|
47
|
+
en: "Order"
|
48
|
+
help:
|
49
|
+
es: "La posición del artículo en la lista de artículos"
|
50
|
+
en: "Position in list of posts"
|
data/_includes/footer.html
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
{%- assign about = site.posts | find: "layout", "about" -%}
|
2
|
+
{%- assign code_of_conduct = site.posts | find: "layout", "code_of_conduct" -%}
|
3
|
+
{%- assign privacy_policy = site.posts | find: "layout", "privacy_policy" -%}
|
4
|
+
{%- assign license = site.posts | find: "layout", "license" -%}
|
2
5
|
{%- assign author = about.author | default: site.title -%}
|
3
6
|
|
4
7
|
<footer class="site-footer h-card">
|
@@ -15,17 +18,27 @@
|
|
15
18
|
</svg><span>{{ site.i18n.footer.subscribe }}</span>
|
16
19
|
</a>
|
17
20
|
</p>
|
18
|
-
{%- if author %}
|
19
21
|
<ul class="contact-list">
|
20
22
|
<li class="p-name">{{ author | escape }}</li>
|
21
23
|
{% if about.email -%}
|
22
24
|
<li><a class="u-email" href="mailto:{{ about.email }}">{{ about.email }}</a></li>
|
23
25
|
{%- endif %}
|
26
|
+
|
27
|
+
{% if license %}
|
28
|
+
<li><a href="{{ license.url }}" rel="license">{{ license.title }}</a></li>
|
29
|
+
{% endif %}
|
30
|
+
|
31
|
+
{% if code_of_conduct %}
|
32
|
+
<li><a href="{{ code_of_conduct.url }}" rel="code-of-conduct">{{ code_of_conduct.title }}</a></li>
|
33
|
+
{% endif %}
|
34
|
+
|
35
|
+
{% if privacy_policy %}
|
36
|
+
<li><a href="{{ privacy_policy.url }}" rel="privacy-policy">{{ privacy_policy.title }}</a></li>
|
37
|
+
{% endif %}
|
24
38
|
</ul>
|
25
|
-
{%- endif %}
|
26
39
|
</div>
|
27
40
|
<div class="footer-col">
|
28
|
-
{{ site.description | allow_inclusive_language_in_markdown | markdownify
|
41
|
+
{{ site.description | allow_inclusive_language_in_markdown | markdownify }}
|
29
42
|
</div>
|
30
43
|
</div>
|
31
44
|
|
data/assets/css/style.scss
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
# Only the main Sass file needs front matter (the dashes are enough)
|
3
3
|
---
|
4
4
|
|
5
|
+
{%- assign theme = site.posts | find: "layout", "theme" -%}
|
6
|
+
|
5
7
|
@import
|
6
|
-
"minima/skins/{{
|
8
|
+
"minima/skins/{{ theme.skin | default: 'classic' }}",
|
7
9
|
"minima/initialize";
|
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.6.
|
4
|
+
version: 2.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- f
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- _data/layouts/page.yml
|
134
134
|
- _data/layouts/post.yml
|
135
135
|
- _data/layouts/privacy_policy.yml
|
136
|
+
- _data/layouts/theme.yml
|
136
137
|
- _includes/custom-head.html
|
137
138
|
- _includes/disqus_comments.html
|
138
139
|
- _includes/footer.html
|