33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block feed %}
|
|
<link href="blog-articles/feed" type="application/atom+xml" rel="alternate" title="Aus GLAMR Blogs" />
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="buttons">
|
|
<a href="{% url 'blog-articles' %}"><button class="button button-primary button-first">Latest posts</button></a>
|
|
<a href="{% url 'register-blog' %}"><button class="button">Add a Blog</button></a>
|
|
</div>
|
|
<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>
|
|
<p><a href="{{blog.url}}">{{blog.title}}</a><a href="{{blog.feed}}">{% include 'utils/rss-img.html' %}</a></p>
|
|
<p>{{blog.description}}</p>
|
|
</div>
|
|
<div><div class="end badge badge_{{blog.category}}"><a href="/blogs/{{blog.category}}">{{blog.category_name}}</a></div></div>
|
|
<div>{{ blog.updateddate|date:"D d M Y" }}
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
{% empty %}
|
|
<p>Oh no! There are no blogs currently registered{% if category %} under '{{category}}'{% endif %}. Try checking out <a href="{% url 'newsletters' %}">some newsletters</a>.</p>
|
|
{% endfor %}
|
|
|
|
{% endblock %} |