forked from magento/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-info.html
More file actions
25 lines (21 loc) · 759 Bytes
/
page-info.html
File metadata and controls
25 lines (21 loc) · 759 Bytes
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
<div class="page-info">
{% if page.contributor_link %}
<div class="page-contributor">
<a href="{{ page.contributor_link }}" target="_blank">
Thanks to {{ page.contributor_name }} for contributing this topic
</a>
</div>
{% endif %}
{% if site.github_link == true %}
<div class="github-link">
<a class="improve-page" href="{{ site.github_repo }}blob/develop/{{ page.path }}" target="_blank">
Edit this page on GitHub
</a>
</div>
{% endif %}
{% if site.feedback_link == true %}
<div class="new-issue">
<a href="{{ site.github_repo }}issues/new?title=Feedback on page: {{ page.url }}" target="_blank">Give us feedback</a>
</div>
{% endif %}
</div>