-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6e2bef
commit 56c1fdc
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="generator" content="pdoc {{ __version__ }}"/> | ||
<title>{% block title %}{% endblock %}</title> | ||
{% block favicon %} | ||
{% if favicon %} | ||
<link rel="icon" href="{{ favicon }}"/> | ||
{% endif %} | ||
{% endblock %} | ||
{% block head %}{% endblock %} | ||
{% filter minify_css | indent %} | ||
{% block style %} | ||
<style>{% include "resources/bootstrap-reboot.min.css" %}</style> | ||
<style>/*! syntax-highlighting.css */{% include "syntax-highlighting.css" %}</style> | ||
{# | ||
The style_pdoc, style_theme, style_layout, and style_content Jinja2 blocks are deprecated and will be | ||
removed in a future release. Custom templates should either provide alternatives for the specific CSS files, | ||
or append their own styles by providing `custom.css` (see examples/custom-template/). | ||
#} | ||
{% block style_pdoc %} | ||
{% block style_theme %}<style>/*! theme.css */{% include "theme.css" %}</style>{% endblock %} | ||
{% block style_layout %}<style>/*! layout.css */{% include "layout.css" %}</style>{% endblock %} | ||
{% block style_content %}<style>/*! content.css */{% include "content.css" %}</style>{% endblock %} | ||
{# Use this file in your custom template directory to add additional CSS styling: #} | ||
<style>/*! custom.css */{% include "custom.css" %}</style> | ||
{% endblock %} | ||
{% endblock %} | ||
{% endfilter %} | ||
{% if math %}{% include "math.html.jinja2" %}{% endif %} | ||
{% if mermaid %}{% include "mermaid.html.jinja2" %}{% endif %} | ||
</head> | ||
<body> | ||
{% block body %} | ||
<nav class="pdoc"> | ||
<label id="navtoggle" for="togglestate" class="pdoc-button">{% include 'resources/navtoggle.svg' %}</label> | ||
<input id="togglestate" type="checkbox" aria-hidden="true" tabindex="-1"> | ||
<div>{% block nav %}{% endblock %}</div> | ||
</nav> | ||
{% block content %}{% endblock %} | ||
{% endblock body %} | ||
</body> | ||
</html> |