From 7e166ab39653b41decfd0ec6f4320509dad96a3b Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 12 Dec 2020 18:34:21 +0100 Subject: [PATCH] Include __PUBLISH__ but also not clickable --- templates/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index f4ad6fc..9f6692f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -99,7 +99,9 @@ {% for magicword in pad.magicwords | sort %} - {% if magicword != "__PUBLISH__" %} + {% if magicword == "__PUBLISH__" %} +

{{magicword}}

+ {% else %} {{ magicword }} {% endif %} {% endfor %}