diff --git a/inquisitor/app.py b/inquisitor/app.py
index 40ff9d0..ce98a32 100644
--- a/inquisitor/app.py
+++ b/inquisitor/app.py
@@ -68,7 +68,7 @@ def root():
# Create the feed control item
link_table = ["
{0} | {1} | | |
".format(
total, make_query_link("all", [], []))]
- for tag, count in sorted(active_tags.items()):
+ for tag, count in sorted(active_tags.items(), key=lambda i: i[0].lower()):
links = [count]
links.append(make_query_link(tag, [tag], []))
if tag in wl: