Skip to content

Instantly share code, notes, and snippets.

@TarasTarasTaras
Created January 19, 2016 18:19
Show Gist options
  • Select an option

  • Save TarasTarasTaras/228a5afc0a3a13951d3a to your computer and use it in GitHub Desktop.

Select an option

Save TarasTarasTaras/228a5afc0a3a13951d3a to your computer and use it in GitHub Desktop.
{% block content %}
<section class='post-content'>
<ul class="favourites nav nav-tabs" role="tablist">
<li style="width:50%"><a style="text-align:center" href="#posts" role="tab" data-toggle="tab"><i class="fa fa-newspaper-o"></i>Статті</a></li>
<li style="width:50%"><a style="text-align:center" href="#sweetie" role="tab" data-toggle="tab"><i class="fa fa-star">Цукерочки</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active in" id='posts'>
{% for post in favourite_posts %}
<img src="{{ post.title_image}}" class="no-border-bottom">
<a href='{% url 'main:full_post' post.pk %}'><h4 class="with-bold">{{ post.title }}</h4></a>
<p>{{ post.short_description }}</p>
{% endfor %}
</div>
<div class="tab-pane fade" id="sweetie">
{% for sweetie in favourites_sweetie %}
<li> {{sweetie.post }} </br>
<p> {{sweetie.post.short_description }}</p> <br>
<i class="fa">{{sweetie.post.date_create }}</i>
<hr>
{% endfor %}
</div>
</div>
</section>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment