diff options
author | Killy | 2017-11-05 19:11:32 +0300 |
---|---|---|
committer | KillyMXI | 2017-12-27 15:04:57 +0300 |
commit | 4550ab47a0eff300f8f4811bc211c2d9b9554e61 (patch) | |
tree | 10ec41cbfd54d4e73098910fb635d8b47d49741f /juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html | |
parent | 573971d10d7af79b74ce367383ab445814dcb039 (diff) |
www: responsive layout
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html b/juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html index edf218a1..0906218a 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html @@ -2,6 +2,7 @@ <a href="/{{ user.name }}"> <img src="//i.juick.com/a/{{ user.uid }}.png" alt=""/>{{ user.name }} </a> + <div id="column-expander" tabindex="0"><i data-icon="ei-chevron-down" data-size="s"></i></div> </div> {% if visitor is not empty and visitor.uid > 0 and visitor.uid != user.uid %} <ul class="toolbar"> @@ -43,21 +44,8 @@ <hr/> {% endif %} <ul> - {% if visitor is not empty and visitor.uid == user.uid %} - <li><a href="/?show=my"><i data-icon="ei-clock" data-size="s"></i>{{ i18n("messages","link.my") }}</a></li> - <li><a href="/pm/inbox"><i data-icon="ei-envelope" data-size="s"></i>{{ i18n("messages","link.privateMessages") }}</a></li> - <li><a href="/?show=discuss"><i data-icon="ei-comment" data-size="s"></i>{{ i18n("messages","link.discuss") }}</a></li> - {% endif %} <li><a href="/{{ user.name }}/?show=recomm" rel="nofollow"><i data-icon="ei-heart" data-size="s"></i>{{ i18n("messages","blog.recommendations") }}</a></li> <li><a href="/{{ user.name }}/?show=photos" rel="nofollow"><i data-icon="ei-camera" data-size="s"></i>{{ i18n("messages","blog.photos") }}</a></li> - {% if visitor is not empty and visitor.uid == user.uid and false %} - <li><a href="/?show=mycomments" rel="nofollow">{{ i18n("messages","blog.comments") }}</a></li> - <li><a href="/?show=unanswered" rel="nofollow">Неотвеченные</a></li> - {% endif %} - {% if visitor is not empty and visitor.uid == user.uid %} - <li><a href="/settings" rel="nofollow"><i data-icon="ei-gear" data-size="s"></i>{{ i18n("messages","link.settings") }}</a></li> - <li><a href="/logout"><i data-icon="ei-user" data-size="s"></i>{{ i18n("messages","link.logout") }}</a></li> - {% endif %} </ul> <hr/> <form action="/{{ user.name }}/"> @@ -79,10 +67,10 @@ <div class="iread"> {% for u in iread %} <span> - <a href="/{{ u.name }}/"> - <img src="//i.juick.com/as/{{ u.uid }}.png" alt="{{ u.name }}"/> - </a> - </span> + <a href="/{{ u.name }}/"> + <img src="//i.juick.com/as/{{ u.uid }}.png" alt="{{ u.name }}"/> + </a> + </span> {% endfor %} </div> {% endif %} |