diff --git a/templates/index.html b/templates/index.html
index d8568cb..b67db29 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -94,8 +94,10 @@
- {% for magicword in pad.magicwords %}
- {{ magicword }}
+ {% for magicword in pad.magicwords | sort %}
+ {% if magicword != "__PUBLISH__" %}
+ {{ magicword }}
+ {% endif %}
{% endfor %}
|