diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..bb8b902 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<html {%block htmlclass%}{%endblock%} dir="ltr" lang="en-US"> + {% block sitename %} +<head> + <title>{% block pagetitle %}Libregraf Publishing. Fine books for fine people{% endblock %}</title>{%endblock%} + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" + content="{% block metadescription %}Libregraf: home of the Lulu and Birdie Book series.{% endblock %}"> + <meta name="author" content="Scott Gilbertson"> + <link rel="alternate" + type="application/rss+xml" + title="Libregraf RSS feed" + href="https://libregraf.net/rss/"> + {%block stylesheet%}<link rel="stylesheet" + href="/media/screenv1.css?{% now "u" %}" + 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">Libregraf <span>Books</span></a> + <span class="sitesubtitle">{%block sitesubtitle %}Home of Lulu, Birdie & Henry{% endblock%}</span> + </div> + <nav> + <a class="nav-item smcaps" href="/bookshop/" title="Buy the Adventures of Lulu and Birdie"><span>Buy the </span>Books</a> + <a class="nav-item smcaps" href="/podcast/" title="Listen to the Podcast"><span>Listen to the </span>Podcast</a> + <a class="nav-item smcaps" href="/friends/" title="Join 'friends of a long year'">Join <span>the </span>Crew</a> + <a class="nav-item smcaps" href="/about" title="About Libregraf">About</a> + </nav> + </header> + {% block breadcrumbs %}{% endblock %} + {% block primary %}{% endblock %} + {% block extrabody %}{% endblock %} + {% block disclaimer %}{% endblock%} + <footer class="page-footer"> + <nav> + <a class="nav-item smcaps" href="/blogroll" title="Sites to inspire you">Blogroll</a> + <a class="nav-item smcaps" href="/contact/" title="contact luxagraf">Contact</a> + <a class="nav-item smcaps" href="/feed.xml" title="RSS feed">RSS</a> + </nav> + <p id="license"> + © 2020-{% now "Y" %} + <span class="h-card"><a class="p-name u-url" href="https://luxagraf.net/">scott gilbertson</a><data class="p-nickname" value="luxagraf"></data><data class="p-locality" value="Earth"></data><data class="p-region" value="Earth"></data><data class="p-country-name" value="United States"></data></span>. + made with ♥ on earth. + </p> + </footer> + {% block js %}{% endblock%} +</body> +</html> |