home » zplus/freepost.git
Author zPlus <zplus@peers.community> 2018-04-07 13:10:02
Committer zPlus <zplus@peers.community> 2018-04-07 13:10:02
Commit fbc24e7 (patch)
Tree 12e0de2
Parent(s)

Merge branch 'master' of https://notabug.org/zPlus/freepost.git * 'master' of https://notabug.org/zPlus/freepost.git: Don't show a blank space after the title


commits diff: acc2fcf..fbc24e7
1 file changed, 2 insertions, 6 deletionsdownload


Diffstat
-rwxr-xr-x template/index.twig 8

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+2/-6 M   template/index.twig
index 05e31c7..359a019
old size: 2K - new size: 2K
@@ -35,13 +35,9 @@ _\(/_ .:.*_\/_* : /\ :
35 35 <div class="post">
36 36 <div class="title">
37 37 {% if post.link|length > 0 %}
38 - <a href="{{ post.link }}">
39 - {{ post.title }}
40 - </a>
38 + <a href="{{ post.link }}">{{ post.title }}</a>
41 39 {% else %}
42 - <a href="post/{{ post.hashId }}">
43 - {{ post.title }}
44 - </a>
40 + <a href="post/{{ post.hashId }}">{{ post.title }}</a>
45 41 {% endif %}
46 42 </div>
47 43