Author
|
Tristan B. Kildaire <deavmi@disroot.org>
2017-10-01 19:35:50
|
Committer
|
Tristan B. Kildaire <deavmi@disroot.org>
2017-10-01 19:35:50
|
Commit
|
b69dcba
(patch)
|
Tree
|
84e4e47
|
Parent(s)
|
|
Move About link closer to the right
commits diff:
8c14a1b..b69dcba
1 file changed,
3 insertions,
2 deletions
—
download
Diffstat
Diff options
+3/-2
M template/header.twig
35
|
35
|
|
<div class="menu">
|
36
|
36
|
|
<a href="{{ ''|docroot }}" class="flex-item">Hot</a>
|
37
|
37
|
|
<a href="{{ 'new'|docroot }}" class="flex-item">New</a>
|
38
|
|
- |
<a href="{{ 'about'|docroot }}" class="flex-item">About</a>
|
39
|
38
|
|
|
40
|
39
|
|
{% if user %}
|
41
|
40
|
|
{% set unread_messages = new_messages() %}
|
51
|
50
|
|
{{ user.name }}
|
52
|
51
|
|
</a>
|
53
|
52
|
|
{% endif %}
|
54
|
|
- |
|
|
53
|
+ |
|
|
54
|
+ |
<a href="{{ 'about'|docroot }}" class="flex-item">About</a>
|
|
55
|
+ |
|
55
|
56
|
|
<a href="{{ 'logout'|docroot }}" class="flex-item">Log out</a>
|
56
|
57
|
|
{% else %}
|
57
|
58
|
|
<a href="{{ 'login'|docroot }}" class="flex-item">Log in</a>
|