ausglamr/blogs/templates/browse/blogs.html
2024-01-07 16:58:56 +11:00

20 lines
516 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="listing l-three header">
<div>Title</div>
<div>Category</div>
<div>Last updated</div>
</div>
<hr/>
{% for blog in blogs %}
<div class="listing l-three">
<div><a href="{{blog.url}}">{{blog.title}}</a><p>{{blog.description}}</p></div>
<div><div class="end badge badge_{{blog.category}}">{{blog.category_name}}</div></div>
<div>{{ blog.updateddate|date:"D d M Y" }}
</div>
</div>
<hr/>
{% endfor %}
{% endblock %}