Author
|
zPlus <zplus@peers.community>
2017-10-02 12:45:36
|
Committer
|
zPlus <zplus@peers.community>
2017-10-02 12:45:36
|
Commit
|
c1ea023
(patch)
|
Tree
|
c133b37
|
Parent(s)
|
|
Remove duplicate code for "About" menu in header.
commits diff:
fd6f7d8..c1ea023
1 file changed,
4 insertions,
3 deletions
—
download
Diffstat
Diff options
+4/-3
M template/header.twig
50
|
50
|
|
{{ user.name }}
|
51
|
51
|
|
</a>
|
52
|
52
|
|
{% endif %}
|
|
53
|
+ |
{% endif %}
|
53
|
54
|
|
|
54
|
55
|
|
<a href="{{ 'about'|docroot }}" class="flex-item">About</a>
|
55
|
|
- |
|
|
56
|
+ |
|
|
57
|
+ |
{% if user %}
|
56
|
58
|
|
<a href="{{ 'logout'|docroot }}" class="flex-item">Log out</a>
|
57
|
59
|
|
{% else %}
|
58
|
|
- |
<a href="{{ 'about'|docroot }}" class="flex-item">About</a>
|
59
|
60
|
|
<a href="{{ 'login'|docroot }}" class="flex-item">Log in</a>
|
60
|
61
|
|
{% endif %}
|
61
|
62
|
|
</div>
|
62
|
63
|
|
</div>
|
63
|
64
|
|
|
64
|
|
- |
<div class="content"> |
64
|
|
> |
\ No newline at end of file
|
|
65
|
+ |
<div class="content">
|