diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..251224b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+setup:
+ python3 -m venv .venv
+ .venv/bin/pip install -r requirements.txt
+
+dev:
+ ./bin/dev
+
+prod:
+ ./bin/prod
diff --git a/suchwow/templates/index.html b/suchwow/templates/index.html
index 8e9eaf8..0369739 100644
--- a/suchwow/templates/index.html
+++ b/suchwow/templates/index.html
@@ -4,6 +4,11 @@
{% endblock %}
diff --git a/suchwow/templates/navbar.html b/suchwow/templates/navbar.html
index 0f30072..7dacdb6 100755
--- a/suchwow/templates/navbar.html
+++ b/suchwow/templates/navbar.html
@@ -7,6 +7,11 @@
+ {% if session.auth %}
+ -
+ Mods!
+
+ {% endif %}
-
Home
diff --git a/suchwow/templates/post/top.html b/suchwow/templates/post/top.html
index d3f59df..e202a27 100644
--- a/suchwow/templates/post/top.html
+++ b/suchwow/templates/post/top.html
@@ -15,6 +15,7 @@
ID |
Title |
Submitter |
+ Thumbnail |
Amount |
{% for post in posts %}
@@ -23,6 +24,11 @@
{{ post[1].id }} |
{{ post[1].title }} |
{{ post[1].submitter }} |
+
+
+
+
+ |
{{ post[0] }} WOW |
{% endfor %}