compost-jekyll-theme 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a56beb61765040c1e09a52aeec38224a42d3d86db901b93170b24ddd13b48fd8
4
- data.tar.gz: b3fe569358689a966d2644c7d40f21de0a0cca44e5c129330186842db1db2954
3
+ metadata.gz: 5cc1c75611cb6dfbc273e844490cf6910d4f85fb4e8fc32ff40366abf0805b4f
4
+ data.tar.gz: 57d8e66a83cd7160a65aeb0abebad982142c59f49ddda1c7a23536095640235d
5
5
  SHA512:
6
- metadata.gz: 4b9c98c2b4530b45c5949d3bd3a995329ef577d8f9f0ddce69b08568b58bfa38f5c5dd320375ac7b50f0aced5fb3047e3e3da04fe3f727b403e8d308cc6eb735
7
- data.tar.gz: 3bf462410c8b1b5acc31039aaa3587bce7cb711fa1a9efca6e8078bff4b97410f25f19328ae7a7755e945550373da04bf41f634b2daeb05836c8d0d197720865
6
+ metadata.gz: a847d4f6e6336027838322cbd9a0e27056150867a83a47d1a2ad2ca71cc13fed3fd8f6841d5c943832fa71f38c083a43cdad8c187356f0a27ef4e58a2b6ce948
7
+ data.tar.gz: 266acdc7e2f2a1fefa031570205ed907fd2c23c572eae891c8f9405a8d510cfb70a90f9566d7fad5b177fbf7581491304089ee94730e9ba7f836af71cba22a79
@@ -48,8 +48,8 @@ image:
48
48
  es: "Imagen principal"
49
49
  en: "Main image"
50
50
  help:
51
- es: "Se utiliza para ilustrar el artículo y como previsualización en las redes sociales."
52
- en: "Used to illustrate the article and as preview in social networks."
51
+ es: "Imagen principal de la portada. Si no una, el contenido será de una sola columna."
52
+ en: "Main image on the home page. If you don't add one, the layout will be a single column."
53
53
  description:
54
54
  label:
55
55
  es: "Descripción de la imagen principal"
@@ -51,8 +51,8 @@ image:
51
51
  es: "Imagen principal"
52
52
  en: "Main image"
53
53
  help:
54
- es: "Se utiliza para ilustrar el artículo y como previsualización en las redes sociales."
55
- en: "Used to illustrate the article and as preview in social networks."
54
+ es: "Se utiliza para ilustrar el artículo y como previsualización en las redes sociales. Si no agregas una, será mostrada como un bloque de color en la lista de artículos."
55
+ en: "Used to illustrate the article and as preview in social networks. If you don't add one, it will be shown as a block of color on the post list."
56
56
  description:
57
57
  label:
58
58
  es: "Descripción de la imagen principal"
@@ -9,9 +9,11 @@ Card horizontal
9
9
  @param :content [string] Contenido
10
10
  {%- endcomment -%}
11
11
  <div class="row justify-content-center container-lg mx-auto">
12
- <div class="col-12 col-md-5 px-4">
13
- {% include picture.html src=include.src width=500 img_class="w-100 object-fit-cover" %}
14
- </div>
12
+ {% unless include.src %}
13
+ <div class="col-12 col-md-5 px-4">
14
+ {% include picture.html src=include.src width=500 img_class="w-100 object-fit-cover" %}
15
+ </div>
16
+ {% endunless %}
15
17
 
16
18
  <div class="col-12 col-md pl-xl-5 pt-5 pt-md-0">
17
19
  <div class="">
@@ -12,5 +12,9 @@ Embed responsive
12
12
  {%- endcomment -%}
13
13
 
14
14
  <div class="embed-responsive embed-responsive-{{ include.x }}by{{ include.y }} {{ include.embed_class }}">
15
- {%- include picture.html class="embed-responsive-item" img_class="w-100 h-100 object-fit-cover" src=include.src alt=include.alt width=include.width -%}
15
+ {% if include.src %}
16
+ {%- include picture.html class="embed-responsive-item" img_class="w-100 h-100 object-fit-cover" src=include.src alt=include.alt width=include.width -%}
17
+ {% else %}
18
+ <div class="embed-responsive-item background-primary"></div>
19
+ {% endif %}
16
20
  </div>
data/_layouts/post.html CHANGED
@@ -10,7 +10,9 @@ layout: "default_with_menu"
10
10
  {%- assign next = page | next: posts -%}
11
11
 
12
12
  <article id="{{ page.slug }}" class="container mx-auto max-w-780px my-4 px-20">
13
- {% include picture.html src=page.image.path alt=page.image.description width=780 img_class="w-100 shadow" %}
13
+ {% unless page.image.path %}
14
+ {% include picture.html src=page.image.path alt=page.image.description width=780 img_class="w-100 shadow" %}
15
+ {% endunless %}
14
16
 
15
17
  <div class="mt-5">
16
18
  {% include headings/h1.html class="text-uppercase black hover-black letter-spacing-4 font-weight-bold mb-12" text=page.title %}
data/_sass/utilities.scss CHANGED
@@ -19,6 +19,16 @@
19
19
  .border-width#{$infix}-#{$border-width} { border-width: $length !important; }
20
20
  }
21
21
 
22
+ @each $color, $rgb in $theme-colors {
23
+ .background#{$infix}-#{$color} {
24
+ background-color: var(--#{$color});
25
+
26
+ &:focus {
27
+ background-color: var(--#{$color});
28
+ }
29
+ }
30
+ }
31
+
22
32
  @each $color, $rgb in $colors {
23
33
  .background#{$infix}-#{$color} {
24
34
  background-color: var(--#{$color});
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compost-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sutty