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 %}
|