ausglamr/blogs/templates/browse/blogs.html

33 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2024-01-04 11:54:56 +11:00
{% extends "layout.html" %}
2024-01-26 11:00:26 +11:00
{% block feed %}
<link href="blog-articles/feed" type="application/atom+xml" rel="alternate" title="Aus GLAMR Blogs" />
{% endblock %}
2024-01-04 11:54:56 +11:00
{% 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>
2024-01-09 18:11:22 +11:00
</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>
2024-01-09 18:11:22 +11:00
<p>{{blog.description}}</p>
2024-01-04 11:54:56 +11:00
</div>
2024-01-09 18:11:22 +11:00
<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" }}
2024-01-04 11:54:56 +11:00
</div>
2024-01-09 18:11:22 +11:00
</div>
<hr/>
{% empty %}
2024-01-26 11:00:26 +11:00
<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>
2024-01-09 18:11:22 +11:00
{% endfor %}
2024-01-04 11:54:56 +11:00
{% endblock %}