Faltaban los includes para compartir
This commit is contained in:
parent
5d3be245a3
commit
25ba521238
2 changed files with 28 additions and 0 deletions
12
_includes/share.html
Normal file
12
_includes/share.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{% assign url = site.url | append: include.url | uri_escape %}
|
||||||
|
{% assign title = include.title | default: site.title | uri_escape %}
|
||||||
|
{% assign description = include.description | default: '' | uri_escape %}
|
||||||
|
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
title="{{ include.share.title }}"
|
||||||
|
class="d-flex flex-column align-items-center p-3"
|
||||||
|
href="{{ include.share.url | replace: '%url', url | replace: '%title', title | replace: '%description', description }}">
|
||||||
|
<i class="fa fa-fw fa-2x fa-{{ include.share.icon }}"></i>
|
||||||
|
<span>{{ include.share.title }}</span>
|
||||||
|
</a>
|
16
_includes/share_box.html
Normal file
16
_includes/share_box.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<input type="checkbox" id="share" class="toggler" autocomplete="off" />
|
||||||
|
|
||||||
|
<label class="share btn border btn-block" for="share">
|
||||||
|
{{ site.i18n.share.text }}
|
||||||
|
<i class="fa fa-{{ site.i18n.share.icon }}"></i>
|
||||||
|
|
||||||
|
<div class="share-box toggled d-flex align-items-center justify-content-center">
|
||||||
|
<div class="box background-white color-redpink row no-gutters align-items-center justify-content-center p-3">
|
||||||
|
{% for share in site.i18n.share.items %}
|
||||||
|
<div class="col-4">
|
||||||
|
{% include_cached share.html share=share url=include.url title=include.title description=include.description %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</label>
|
Loading…
Reference in a new issue