-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathfooter.html
More file actions
54 lines (54 loc) · 2.87 KB
/
footer.html
File metadata and controls
54 lines (54 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<div class="feedback-footer row hidden-sm hidden-xs">
<div class="col-xs-4">
{% if edit_on_github_url %}
{%- if gitLastAuthor -%}<p class="git-info" style="text-align: right;">
{%- if gitLastAvatar -%}<img src="{{ gitLastAvatar }}" class="git-info-image">{%- endif -%}
Last updated by
{%- if gitLastLogin %} <a href="https://github.com/{{ gitLastLogin }}" target="_blank" rel="noopener noreferrer">{{ gitLastAuthor }}</a>{% else %} {{ gitLastAuthor }}{%- endif %}
on {{ gitstamp }}.</p>
{%- endif %}
{% endif %}
</div>
<div class="col-xs-4">
{% if edit_on_github_url %}
{%- if gitMainAuthor -%}<p class="git-info" style="text-align: right;">
{%- if gitMainAvatar -%}<img src="{{ gitMainAvatar }}" class="git-info-image">{%- endif -%}
Main contributor
{%- if gitMainLogin %} <a href="https://github.com/{{ gitMainLogin }}" target="_blank" rel="noopener noreferrer">{{ gitMainAuthor }}</a>{% else %} {{ gitMainAuthor }}{%- endif %}
with {{ gitMainCommits }} commit(s).</p>
{%- endif %}
{% endif %}
</div>
<div class="col-xs-5 feedback-center">
<p>
{% trans %}Did you find what you were looking for?{% endtrans %}
<br/>
<a href="{{feedback_on_github_url}}" target="_blank" rel="noopener noreferrer">{% trans %}Give us your feedback.{% endtrans %}</a>
</p>
</div>
<div class="col-xs-3">
{% include "include/social.html" %}
</div>
</div>
<div class="feedback-footer hidden-lg hidden-md feedback-center">
{% if edit_on_github_url %}
{%- if gitLastAuthor -%}<p class="git-info">
{%- if gitLastAvatar -%}<img src="{{ gitLastAvatar }}" class="git-info-image" width="32" height="32">{%- endif -%}
Last updated by
{%- if gitLastLogin %} <a href="https://github.com/{{ gitLastLogin }}" target="_blank" rel="noopener noreferrer">{{ gitLastAuthor }}</a>{% else %} {{ gitLastAuthor }}{%- endif %}
on {{ gitstamp }}.</p>
{%- endif %}
{%- if gitMainAuthor -%}<p class="git-info">
{%- if gitMainAvatar -%}<img src="{{ gitMainAvatar }}" class="git-info-image" width="32" height="32">{%- endif -%}
Main contributor
{%- if gitMainLogin %} <a href="https://github.com/{{ gitMainLogin }}" target="_blank" rel="noopener noreferrer">{{ gitMainAuthor }}</a>{% else %} {{ gitMainAuthor }}{%- endif %}
with {{ gitMainCommits }} commit(s).</p>
{%- endif %}
{% endif %}
<p>
{% trans %}Did you find what you were looking for?{% endtrans %}
<br/>
<a href="{{feedback_on_github_url}}" target="_blank" rel="noopener noreferrer">{% trans %}Give us your feedback.{% endtrans %}</a>
</p>
{% include "include/social.html" %}
</div>