aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/sidebar/show_source.html
blob: 4316129c35b01e9dc42ea27f68362c568f19b186 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% if SHOW_SOURCE_ON_SIDEBAR %}
  {% if (article and article.show_source_url) or (page and page.show_source_url) %}

<!-- Show source -->
<li class="list-group-item"><h4><i class="fa fa-tags fa-file-text"></i><span class="icon-label">This Page</span></h4>
  <ul class="list-group">
    <li class="list-group-item">
      {% if article %}
      <a href="{{ SITEURL }}/{{ article.show_source_url }}">Show source</a>
      {% elif page %}
      <a href="{{ SITEURL }}/{{ page.show_source_url }}">Show source</a>
      {% endif %}
    </li>
  </ul>
</li>
<!-- End Show source -->

  {% endif %}
{% endif %}