home » zplus/freepost.git
Author Jorge Maldonado Ventura <jorgesumle@freakspot.net> 2018-04-07 12:31:59
Committer Jorge Maldonado Ventura <jorgesumle@freakspot.net> 2018-04-07 12:31:59
Commit ab40431 (patch)
Tree 4a7d779
Parent(s)

Don't show a blank space after the title


commits diff: 44e5124..ab40431
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 761cec5..b1f7cb7
old size: 2K - new size: 2K
@@ -32,13 +32,9 @@ _\(/_ .:.*_\/_* : /\ :
32 32 <div class="post">
33 33 <div class="title">
34 34 {% if post.link|length > 0 %}
35 - <a href="{{ post.link }}">
36 - {{ post.title }}
37 - </a>
35 + <a href="{{ post.link }}">{{ post.title }}</a>
38 36 {% else %}
39 - <a href="post/{{ post.hashId }}">
40 - {{ post.title }}
41 - </a>
37 + <a href="post/{{ post.hashId }}">{{ post.title }}</a>
42 38 {% endif %}
43 39 </div>
44 40