Author
|
zPlus <zplus@peers.community>
2017-10-02 12:34:03
|
Committer
|
Gogs <gogitservice@gmail.com>
2017-10-02 12:34:03
|
Commit
|
fd6f7d8
(patch)
|
Tree
|
7db1248
|
Parent(s)
|
|
Merge branch 'about-link-moved-position' of deavmi/freepost-crufty into master
commits diff:
9bf0347..fd6f7d8
1 file changed,
4 insertions,
2 deletions
—
download
Diffstat
Diff options
+4/-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 %}
|
|
58
|
+ |
<a href="{{ 'about'|docroot }}" class="flex-item">About</a>
|
57
|
59
|
|
<a href="{{ 'login'|docroot }}" class="flex-item">Log in</a>
|
58
|
60
|
|
{% endif %}
|
59
|
61
|
|
</div>
|