diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2020-10-28 17:08:59 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2020-10-28 17:08:59 +0100 |
commit | cf00b5177addd8d99f38452b80c7dc0a7f577b4f (patch) | |
tree | 75bb7cd4991f01d3c7825b47a5232c910a479cb7 /templates/web | |
parent | 8d0261de378352100f45f2d25627aefee48fa085 (diff) |
Fix collegamento tags
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/entry.html | 2 | ||||
-rw-r--r-- | templates/web/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/entry.html b/templates/web/entry.html index 4647f05..852f5c8 100644 --- a/templates/web/entry.html +++ b/templates/web/entry.html @@ -24,7 +24,7 @@ <div title="Tags" style="margin-top: 0.2em"> <svg class="svg-icon" viewBox="0 0 20 20"><path d="M17.35,2.219h-5.934c-0.115,0-0.225,0.045-0.307,0.128l-8.762,8.762c-0.171,0.168-0.171,0.443,0,0.611l5.933,5.934c0.167,0.171,0.443,0.169,0.612,0l8.762-8.763c0.083-0.083,0.128-0.192,0.128-0.307V2.651C17.781,2.414,17.587,2.219,17.35,2.219M16.916,8.405l-8.332,8.332l-5.321-5.321l8.333-8.332h5.32V8.405z M13.891,4.367c-0.957,0-1.729,0.772-1.729,1.729c0,0.957,0.771,1.729,1.729,1.729s1.729-0.772,1.729-1.729C15.619,5.14,14.848,4.367,13.891,4.367 M14.502,6.708c-0.326,0.326-0.896,0.326-1.223,0c-0.338-0.342-0.338-0.882,0-1.224c0.342-0.337,0.881-0.337,1.223,0C14.84,5.826,14.84,6.366,14.502,6.708"></path></svg> {% for tag in entry.data.tags %} - <a class="tag" href="{{ url_for('search') }}?q=tag:{{tag|urlencode}}">{{ tag }}</a> + <a class="tag" href="{{ url_for('search') }}?q=tags:{{tag|urlencode}}">{{ tag }}</a> {% endfor %} </div> {% endif %} diff --git a/templates/web/index.html b/templates/web/index.html index 1a0e488..e63c185 100644 --- a/templates/web/index.html +++ b/templates/web/index.html @@ -31,7 +31,7 @@ {% if entry.data.tags|count > 0 %} <svg class="svg-icon" viewBox="0 0 20 20"><path d="M17.35,2.219h-5.934c-0.115,0-0.225,0.045-0.307,0.128l-8.762,8.762c-0.171,0.168-0.171,0.443,0,0.611l5.933,5.934c0.167,0.171,0.443,0.169,0.612,0l8.762-8.763c0.083-0.083,0.128-0.192,0.128-0.307V2.651C17.781,2.414,17.587,2.219,17.35,2.219M16.916,8.405l-8.332,8.332l-5.321-5.321l8.333-8.332h5.32V8.405z M13.891,4.367c-0.957,0-1.729,0.772-1.729,1.729c0,0.957,0.771,1.729,1.729,1.729s1.729-0.772,1.729-1.729C15.619,5.14,14.848,4.367,13.891,4.367 M14.502,6.708c-0.326,0.326-0.896,0.326-1.223,0c-0.338-0.342-0.338-0.882,0-1.224c0.342-0.337,0.881-0.337,1.223,0C14.84,5.826,14.84,6.366,14.502,6.708"></path></svg> {% for tag in entry.data.tags %} - <a class="tag" href="{{ url_for('search') }}?q=tag:{{tag|urlencode}}">{{ tag }}</a> + <a class="tag" href="{{ url_for('search') }}?q=tags:{{tag|urlencode}}">{{ tag }}</a> {% endfor %} {% endif %} </footer> |