summaryrefslogtreecommitdiffstats
path: root/templates/statuses
diff options
context:
space:
mode:
Diffstat (limited to 'templates/statuses')
-rw-r--r--templates/statuses/_status.html12
-rw-r--r--templates/statuses/home.html15
2 files changed, 0 insertions, 27 deletions
diff --git a/templates/statuses/_status.html b/templates/statuses/_status.html
deleted file mode 100644
index b501abc..0000000
--- a/templates/statuses/_status.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<div class="status">
- <h3 class="author">
- <a href="{{ status.identity.urls.view }}">
- {{ status.identity }}
- <small>{{ status.identity.handle }}</small>
- </a>
- </h3>
- <time>
- <a href="{{ status.urls.view }}">{{ status.created | timesince }} ago</a>
- </time>
- {{ status.text | linebreaks }}
-</div>
diff --git a/templates/statuses/home.html b/templates/statuses/home.html
deleted file mode 100644
index e47ccfd..0000000
--- a/templates/statuses/home.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% extends "base.html" %}
-{% load crispy_forms_tags %}
-
-{% block title %}Home{% endblock %}
-
-{% block content %}
-
- {% crispy form form.helper %}
-
- {% for status in statuses %}
- {% include "statuses/_status.html" %}
- {% empty %}
- No statuses yet.
- {% endfor %}
-{% endblock %}