Added feature social links

This commit is contained in:
Jesús 2019-03-10 20:59:04 -05:00
parent b2e757f555
commit cf210e1925
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 24 additions and 13 deletions

View File

@ -86,7 +86,7 @@
<!-- post footer -->
<div class="card-content-footer-small">
<div class="navbar is-social-center">
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['gnusocial'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#gnusocial" />
@ -94,7 +94,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['diaspora'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#diaspora" />
@ -102,7 +102,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['mastodom'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#mastodom" />

View File

@ -147,7 +147,7 @@
<div class="card-content">
<div class="content social">
<div class="navbar is-social-center">
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['gnusocial'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#gnusocial" />
@ -155,7 +155,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['diaspora'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#diaspora" />
@ -163,7 +163,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['mastodom'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#mastodom" />
@ -198,7 +198,7 @@
<!-- header nav content -->
<div class="navbar is-social-center">
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['diaspora'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#diaspora"/>
@ -206,7 +206,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['gnusocial'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#gnusocial"/>
@ -214,7 +214,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['pump'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pump"/>
@ -222,7 +222,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['pixelfed'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pixelfed"/>
@ -230,7 +230,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['peertube'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#peertube"/>
@ -238,7 +238,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['mediagoblin'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#mediagoblin"/>
@ -246,7 +246,7 @@
</svg>
</span>
</a>
<a class="navbar-item" href="">
<a class="navbar-item" href="{{ SOCIAL['matrix'] }}">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#matrix"/>

View File

@ -102,6 +102,17 @@ SITEMAP = {
}
}
SOCIAL = {
'diaspora': '#',
'gnusocial': '#',
'mastodom': '#',
'matrix': '#',
'mediagoblin': '#',
'peertube': '#',
'pixelfed': '#',
'pump': '#'
}
ANOTHER_READ_MORE_LINK = 'Continúa leyendo <span class="screen-reader-text">{title}</span>'
ANOTHER_READ_MORE_LINK_FORMAT = ' <a class="more-link" href="{url}#read_more_link">{text}</a>'