diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-26 17:34:02 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-26 17:34:02 +0000 |
commit | e60c93e5ad3ad808d5559ba590ece57987d23782 (patch) | |
tree | 39ab1e1072a4348e23d76975c5697b415ddcaa94 /templates | |
parent | 6fd1a9f7d649999c627c50872a88d31ccfed6ae1 (diff) | |
download | blog-e60c93e5ad3ad808d5559ba590ece57987d23782.tar.gz blog-e60c93e5ad3ad808d5559ba590ece57987d23782.tar.bz2 blog-e60c93e5ad3ad808d5559ba590ece57987d23782.zip |
Remove drafts logic
Diffstat (limited to 'templates')
-rw-r--r-- | templates/feed.html | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/templates/feed.html b/templates/feed.html index 86013bb..f8800bc 100644 --- a/templates/feed.html +++ b/templates/feed.html @@ -24,7 +24,6 @@ {% if posts %} <ul class="posts"> {% for post in posts %} - <li> <span> <i> @@ -35,9 +34,6 @@ </span> <a href="{{ post.name }}"> {{ post.metadata.title }} - {% if post.is_draft() %} - (Draft) - {% endif %} </a> </li> {% endfor %} |