]> git.ipfire.org Git - ipfire.org.git/blame - templates/planet/modules/author-box.html
Make all absolute links use https:// instead of http://
[ipfire.org.git] / templates / planet / modules / author-box.html
CommitLineData
d88b8f41
MT
1<div class="well pull-right ac" style="margin-left: 1em;">
2 <img class="img-thumbnail" src="{{ author.gravatar_icon(213) }}" alt="{{ author.name }}" />
3
4 <h3>
5 <a href="/user/{{ author.uid }}">{{ author.name }}</a>
6 </h3>
7
8 <br>
9
10 <ul class="list-inline">
11 <li>
12 <a href="mailto:{{ author.email }}" title="{{ _("Write an email") }}">
13 <i class="glyphicon glyphicon-envelope"></i>
14 </a>
15 </li>
16
17 {% if author.is_talk_enabled() %}
18 <li>
ba43a892 19 <a href="https://talk.ipfire.org/phonebook/{{ author.uid }}"
d88b8f41
MT
20 title="{{ _("%s on talk.ipfire.org") % author.name }}">
21 <i class="glyphicon glyphicon-earphone"></i>
22 </a>
23 </li>
24 {% end %}
25 </ul>
26</div>