Skip to content

Instantly share code, notes, and snippets.

@soapdog
Created September 8, 2014 17:18
Show Gist options
  • Save soapdog/9bea70b7dd76bbfc35e0 to your computer and use it in GitHub Desktop.
Save soapdog/9bea70b7dd76bbfc35e0 to your computer and use it in GitHub Desktop.
{# Esse é o template para o container box "home-hero-items-box" depende de dois posts #}
{% load static obj_tags images_tags %}
<section class="slice animate-hover-slide bg-3">
<div class="w-section inverse">
<div class="container">
<div class="row">
{% for article in articlebox.ordered_containers %}
<div class="col-md-6">
<div class="w-box">
<div class="figure">
<img alt="" src="{% image_obj article.main_image %}" class="img-responsive">
<span class="image-header">
<span class="image-header-title">{{ article.title}}</span>
<span class="image-header-subtitle {% cycle 'pinkBg' 'blueBg' %}">{{ article.hat }}</span>
</span>
<div class="figcaption bg-2"></div>
<div class="figcaption-btn">
<a href="{% url 'articles:open' tag.channel.long_slug tag.slug %}" class="btn btn-xs btn-one"><i class="fa fa-link"></i> Ver más</a>
</div>
</div>
<p>
{{ article.headline }}
</p>
<p><a class="blog-read-more-link" href="{% url 'articles:open' tag.channel.long_slug tag.slug %}">Ver más <i class="fa fa-arrow-circle-right"></i></a></p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment