diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..5c73b11 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html {%block htmlclass%}{%endblock%} dir="ltr" lang="en-US"> + {% block sitename %} +<head> + <title>{% block pagetitle %}{% endblock %}</title>{%endblock%} + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" + content="{% block metadescription %}{% endblock %}"> + <meta name="author" content="Corrinne Gilbertson"> + {%block stylesheet%}<link rel="stylesheet" + href="/media/screenv1.css{%comment%}?{% now "u" %}{%endcomment%}" + media="screen">{%endblock%} + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> + {%block extrahead%}{%endblock%} +</head> +<body {%block bodyid%}{%endblock%}{%block bodyevents%}{%endblock%}> + <header class="header-wrapper"> + <div id="logo"> + <a class="logo-link" href="/" title="Home">Cumulus<span>Learning</span></a> + </div> + <nav> + <a class="nav-item" href="/about" title="About Corrinne">About</a> + <a class="nav-item" href="/tutoring" title="Sign up for classes">Private Tutoring</a> + <a class="nav-item" href="/classes/" title="Sign up for classes">Classes</a> + {%comment %}<a class="nav-item" href="/what-is-structured-word-inquiry" title="How structured word inquiry helps children learn to read">What Is SWI?</a> + <a class="nav-item" href="/resources/" title="Resources for parents and teachers">Resources</a>{% endcomment%} + <a class="nav-item" href="/contact/" title="Contact Corrinne">Contact</a> + </nav> + </header> + {% block breadcrumbs %}{% endblock %} + {% block primary %}{% endblock %} + {% block extrabody %}{% endblock %} + <footer class="page-footer"> + <nav> + <a class="nav-item" href="/about" title="About Corrinne">About</a> + <a class="nav-item" href="/tutoring" title="Sign up for classes">Private Tutoring</a> + <a class="nav-item" href="/classes/" title="Sign up for classes">Classes</a> + {%comment %}<a class="nav-item" href="/what-is-structured-word-inquiry" title="How structured word inquiry helps children learn to read">What Is SWI?</a> + <a class="nav-item" href="/resources/" title="Resources for parents and teachers">Resources</a>{% endcomment%} + <a class="nav-item" href="/contact/" title="Contact Corrinne">Contact</a> + </nav> + <p id="license"> + © 2020-{% now "Y" %} + <span class="h-card"><a class="p-name u-url" href="https://tk.net/">Corrinne Gilbertson</a><data class="p-locality" value="Everywhere"></data><data class="p-country-name" value="United States"></data></span>. + </p> + </footer> + {% block js %}{% endblock%} +</body> +</html> |