diff --git a/classic.html b/classic.html
new file mode 100644
index 0000000..5dcc382
--- /dev/null
+++ b/classic.html
@@ -0,0 +1,1976 @@
+
+
+
+
+
+
{{ escape_html(rant.text) }}
+ {% if rant.attached_image %}
+

+ {% endif %}
+ {% if rant.tags %}
+
+ {% for tag in rant.tags %}
+ {{ tag }}
+ {% endfor %}
+
+ {% endif %}
+
+
+{% endmacro %}
diff --git a/templates/feed.html b/templates/feed.html
new file mode 100644
index 0000000..4dc2c82
--- /dev/null
+++ b/templates/feed.html
@@ -0,0 +1,16 @@
+{% extends 'base.html' %}
+{% from 'components/rant_card.html' import render_rant_card %}
+
+{% block content %}
+
+ {% for rant in rants %}
+ {{ render_rant_card(rant) }}
+ {% endfor %}
+
+{% endblock %}
diff --git a/templates/login.html b/templates/login.html
new file mode 100644
index 0000000..94f4f10
--- /dev/null
+++ b/templates/login.html
@@ -0,0 +1,26 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
{{ notif.username }} {% if notif.type == 'comment' %}commented on your rant{% else %}mentioned you{% endif %}
+
{{ format_time(notif.created_time) }}
+
+ {% endfor %}
+{% else %}
+
+ {% if active_tab == 'rants' %}
+ {% for rant in rants %}
+ {{ render_rant_card(rant) }}
+ {% endfor %}
+ {% elif active_tab == 'comments' %}
+ {% for comment in comments %}
+
+
{{ escape_html(comment.body) }}
+
+
+ {% endfor %}
+ {% elif active_tab == 'favorites' %}
+ {% for rant in favorites %}
+ {{ render_rant_card(rant) }}
+ {% endfor %}
+ {% endif %}
+
+{% endblock %}
diff --git a/templates/rant_detail.html b/templates/rant_detail.html
new file mode 100644
index 0000000..a6839cc
--- /dev/null
+++ b/templates/rant_detail.html
@@ -0,0 +1,103 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+
{{ escape_html(rant.text) }}
+ {% if rant.attached_image %}
+

+ {% endif %}
+ {% if rant.tags %}
+
+ {% for tag in rant.tags %}
+ {{ tag }}
+ {% endfor %}
+
+ {% endif %}
+
+
+
+
+
+
+{% endblock %}
diff --git a/templates/search.html b/templates/search.html
new file mode 100644
index 0000000..faece59
--- /dev/null
+++ b/templates/search.html
@@ -0,0 +1,23 @@
+{% extends 'base.html' %}
+{% from 'components/rant_card.html' import render_rant_card %}
+
+{% block content %}
+
+ {% if search_term %}
+ {% if results %}
+ {% for rant in results %}
+ {{ render_rant_card(rant) }}
+ {% endfor %}
+ {% else %}
+
No results found
+ {% endif %}
+ {% endif %}
+
+{% endblock %}
Comments ({{ comments|length }})
+Login to comment
+ {% endif %} +