2017-12-02 16:54:32 +01:00
|
|
|
<!-- Begin articles List-->
|
|
|
|
<section id="articles">
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="col-lg-10 col-lg-offset-1 appear-animation-trigger">
|
|
|
|
{% for article in site.data.articles %}
|
|
|
|
<div class="effect-wrapper col-md-4 col-sm-6 col-xs-12 appear-animation">
|
|
|
|
<div class="zoe-effect" data-toggle="modal" data-target="#articleDetail-{{ article.id }}">
|
|
|
|
<figure class="waves-effect waves-block waves-light" style="background-image: url({{ site.baseurl | append: '/img/articles/' | append: article.thumbnailUrl }})">
|
|
|
|
<div class="overlay solid-overlay"></div>
|
2017-12-02 17:14:07 +01:00
|
|
|
{% if article.ribbon != null %}
|
|
|
|
<ul class="ribbon-wrapper">
|
|
|
|
{% for ribbon in article.ribbon %}
|
|
|
|
<li class="{{ ribbon["abbr"] | downcase }}">
|
|
|
|
<p class="ribbon abbr">{{ ribbon["abbr"] }}</p>
|
|
|
|
<p class="ribbon full-title">{{ ribbon["title"] }}</p>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2017-12-03 18:57:39 +01:00
|
|
|
<div id="DondeCruzanCaminos" class="aplayer" style="margin-top: 40px;"></div>
|
2017-12-02 17:14:07 +01:00
|
|
|
{% endif %}
|
|
|
|
<figcaption style="height: 70px;">
|
2017-12-02 16:54:32 +01:00
|
|
|
<div class="col-md-8 col-xs-8 text-left">
|
2017-12-03 13:48:38 +01:00
|
|
|
<h2 class="name">
|
2017-12-03 14:22:04 +01:00
|
|
|
<a href="{{ article.link }}" target="_blank" style="color: #333;text-shadow: 1px 1px 3px white;">
|
2017-12-03 18:57:39 +01:00
|
|
|
{{ article.title | truncatewords: 6 }}
|
2017-12-03 14:22:04 +01:00
|
|
|
</a>
|
2017-12-02 16:54:32 +01:00
|
|
|
</h2>
|
|
|
|
<p class="name">
|
|
|
|
{% for autor in article.autores %}
|
2017-12-03 14:22:04 +01:00
|
|
|
{% if autor.twitter != null %}
|
|
|
|
<a href="{{ autor.twitter }}" target="_blank">
|
|
|
|
<svg class="icon icon-twitter" viewBox="0 0 30 30" style="fill: #60ccfd;">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-twitter"></use>
|
|
|
|
</svg>
|
|
|
|
{{autor.nombre}}
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
{{autor.nombre}}
|
|
|
|
{% endif %}
|
2017-12-03 13:48:38 +01:00
|
|
|
{% endfor %}
|
|
|
|
</p >
|
2017-12-02 16:54:32 +01:00
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
2017-12-03 13:52:19 +01:00
|
|
|
{% if article.link != null %}
|
|
|
|
<a href="{{ article.link }}" target="_blank">
|
|
|
|
<svg class="icon icon-site" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-site"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2017-12-02 16:54:32 +01:00
|
|
|
</figcaption>
|
|
|
|
<p class="bio" style="background-color: rgba(0, 0, 0, 0.3); height: auto;" >
|
|
|
|
{{ article.details }}
|
2017-12-03 18:57:39 +01:00
|
|
|
</p>
|
2017-12-02 16:54:32 +01:00
|
|
|
</figure>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-03 18:57:39 +01:00
|
|
|
<script src="https://unpkg.com/aplayer"></script>
|
|
|
|
<script src="../js/audiolist.js"></script>
|
2017-12-02 16:54:32 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- End articles List -->
|