File: sidebar-logo.html

package info (click to toggle)
python-altair 5.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,952 kB
  • sloc: python: 25,649; sh: 14; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="navbar-brand-box">
    <a class="navbar-brand text-wrap" href="{{ pathto('index') }}">
      {% if logo %}
        <!-- `logo` is deprecated in Sphinx 4.0, so remove this when we stop supporting 3 -->
        {% set logo_url=logo %}
      {% endif %}
      {% if logo_url %}
      <img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="logo">
      <br>
      <p class="site-version" id="site-version">{{ version }}</p>
      {% endif %}
    </a>
</div>