summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 5c73b113fb5d53b1e4143011355bb6cb91e12d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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">
            &copy; 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>