Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {% extends 'Kdm/Inner.html' %}
  2.  
  3. {% block content %}
  4.  
  5. <ol class="breadcrumb">
  6. <li><a href="/">Главная страница</a></li>
  7. <li class="active">Новости</li>
  8. <li></li>
  9. </ol>
  10.  
  11. {% for topic in topics %}
  12. <section class="panel panel-default">
  13. <div class="panel-body">
  14. <h1><a href="/news/topics/{{topic.Pk}}.html">{{topic.title}}</a></h1>
  15. <t4:block path="/News//NewsByTopic" template="main" id="{{topic.Pk}}" count="4" />
  16. <p class="pull-right"><a href="/news/topics/{{topic.Pk}}.html"><i class="glyphicon glyphicon-chevron-right"></i> все новости раздела</a></p>
  17. </div>
  18. </section>
  19. {% endfor %}
  20.  
  21. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement