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 deletions
—
download
Diffstat
Diff options
+2/-6
M template/index.twig
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
|
|
|