File: layout.html

package info (click to toggle)
metpy 1.7.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,584 kB
  • sloc: python: 41,853; makefile: 111; javascript: 57
file content (18 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "!layout.html" %}

{% block fonts %}
<style>
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
</style>
{% endblock %}

{% block extrahead %}
    {{ super() }}
    <link rel="canonical" href="https://unidata.github.io/MetPy/latest/{{ pagename }}{{ file_suffix }}" />
{% endblock %}

{% block docs_navbar %}
    {{ super() }}
    {# Added to support a banner with an alert #}
    <div class="container-fluid" id="banner"></div>
{% endblock %}