mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-17 14:00:22 +00:00
17 lines
No EOL
597 B
HTML
17 lines
No EOL
597 B
HTML
<!--Created by: Pouria Hadjibagheri-->
|
|
|
|
{%- if show_source and has_source and sourcename %}
|
|
<h3>{{ _('This Page') }}</h3>
|
|
<ul class="this-page-menu">
|
|
<li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
|
|
rel="nofollow">{{ _('Show Source') }}</a></li>
|
|
{%- if show_on_github_url %}
|
|
<li><a href="{{ show_on_github_url }}"
|
|
rel="nofollow">{{ _('Show on GitHub') }}</a></li>
|
|
{%- endif %}
|
|
{%- if edit_on_github_url %}
|
|
<li><a href="{{ edit_on_github_url }}"
|
|
rel="nofollow">{{ _('Edit on GitHub') }}</a></li>
|
|
{%- endif %}
|
|
</ul>
|
|
{%- endif %} |