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