aboutsummaryrefslogtreecommitdiff
path: root/templates/posts/list.django
blob: 2dc5d0393971848eaf5f1e69e41268de81ecf5c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'layouts/main.django' %}
{% block content %}
  {% if Error %}
    <div class="centered-main">
      <div class="error">{{ Error }}</div>
    </div>
  {% endif %}
  {% include 'partials/search.django' %}
  {% if Posts %}
    Will Show posts here
  {% else %}
    <div class="centered-main">
      <h1>No Posts Available</h1>
      <p>
        It seems there are no posts available at the moment. Check back later or <a href="/posts/new">upload a new post</a>.
      </p>
    </div>
  {% endif %}
{% endblock %}