Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. {% for allnew in allnews.allcate1news %}
  2. <div class="col-sm-4">
  3.  
  4. <p class="text-center opacity">
  5. {% with allnew.header_image.url as image_static %}
  6. <img width="370" height="185" alt="" src="{% static image_static %}" />
  7. {% endwith %}
  8. </p>
  9. <h4>
  10. {% with '/page/'|add:allnew.id as itemid %}
  11. {{itemid}}
  12. {% endwith %}
  13. <a class="black" href="#">{{allnew.title}}</a>
  14. </h4>
  15. <p>{{allnew.sub_title}}</p>
  16. <div class="meta top-pad-10">
  17. <!-- Meta Date -->
  18. <span class="time">{{allnew.created_date}}</span>
  19. <span class="pull-right">
  20. <i class=" icon-comment2"></i>
  21. <a href="#">3 comment(s)</a></span></div>
  22. </div>
  23. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement