radios-comunitarias-jekyll-theme 0.1.0 → 0.1.1
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/post.html +3 -3
- data/_includes/share.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: b6d4f7d5748b74e145731ab8f7c420788161e05ddaf26b28df45e7920d5c06c9
|
|
4
|
+
data.tar.gz: fe0e6f16d2f6c3e2f093d9f0d3f1d7d92208aa4c6b456913ed4c2536b1d41537
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17b0dd0292361942473abdb7011b90ee42efb12195bdf343ce9d8970c18d37f6b9f23828ff23b68c0d958ca1492147060b68256d67b254890e1c988da2cbd651
|
|
7
|
+
data.tar.gz: a6fc073aee96e76bf81d90eee568ea1f5d6a3c394baed622e6937772e527bed02ff919fb2709481869df3f703f7349621b2db02f398e21fbcf960de3d500b05a
|
data/_includes/post.html
CHANGED
|
@@ -11,11 +11,11 @@ Ya tiene todos los metadatos para schema.org y microformats.org
|
|
|
11
11
|
<header class="row no-gutters align-items-center mb-3">
|
|
12
12
|
<div class="p-name col-12 col-lg-9">
|
|
13
13
|
<h1 class="p-name" itemprop="name headline">
|
|
14
|
-
{{ page.title | escape }}
|
|
14
|
+
{{ page.title | default: '' | escape }}
|
|
15
15
|
</h1>
|
|
16
16
|
|
|
17
17
|
{%- if page.description -%}
|
|
18
|
-
<p class="lead p-summary" itemprop="description">{{ page.description | escape }}</p>
|
|
18
|
+
<p class="lead p-summary" itemprop="description">{{ page.description | default: '' | escape }}</p>
|
|
19
19
|
{%- endif -%}
|
|
20
20
|
</div>
|
|
21
21
|
|
|
@@ -24,7 +24,7 @@ Ya tiene todos los metadatos para schema.org y microformats.org
|
|
|
24
24
|
{%- for author in page.author -%}
|
|
25
25
|
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
26
26
|
<span class="p-author h-card" itemprop="name">
|
|
27
|
-
{{ author | escape }}
|
|
27
|
+
{{ author | default: '' | escape }}
|
|
28
28
|
</span>{% unless forloop.last %},{% endunless %}
|
|
29
29
|
</span>
|
|
30
30
|
{%- endfor -%}
|
data/_includes/share.html
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{% capture url %}{{ site.url }}{{ include.url }}{% endcapture %}
|
|
2
2
|
|
|
3
3
|
{% unless include.share.url == '%url' %}
|
|
4
|
-
{% assign url = url | cgi_escape %}
|
|
4
|
+
{% assign url = url | default: '' | cgi_escape %}
|
|
5
5
|
{% endunless %}
|
|
6
|
-
{% assign title = include.title | cgi_escape %}
|
|
6
|
+
{% assign title = include.title | default: '' | cgi_escape %}
|
|
7
7
|
{% assign description = include.description | default: '' | cgi_escape %}
|
|
8
8
|
{% assign hashtag = include.categories | first | capitalize | remove: ' ' %}
|
|
9
9
|
|