summaryrefslogtreecommitdiff
path: root/templates/base.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html.j2')
-rw-r--r--templates/base.html.j295
1 files changed, 95 insertions, 0 deletions
diff --git a/templates/base.html.j2 b/templates/base.html.j2
new file mode 100644
index 0000000..c0f8885
--- /dev/null
+++ b/templates/base.html.j2
@@ -0,0 +1,95 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <title>
+ {% block title %}
+ Tutoring Excellence Online and in Suffolk, VA - Carpenter Tutoring, LLC
+ {% endblock %}
+ </title>
+ {% block styles %}
+ <link rel="stylesheet" href="/styles.css" />
+ {% endblock %}
+ <link rel="preconnect" href="https://fonts.gstatic.com" />
+ <link rel="stylesheet" href="/desktop.css" />
+ <link rel="stylesheet" href="/widescreen.css" />
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <meta property="og:image" content="https://carpentertutoring.com/assets/logo.webp" />
+ <meta property="og:image:secure_url" content="https://carpentertutoring.com/assets/logo.webp" />
+ <meta property="og:site_name" content="Carpenter Tutoring, LLC" />
+ <meta property="og:type" content="website" />
+ {% block og %}
+ <meta name="description" content="Tutoring Excellence Online and in Suffolk, VA" />
+ <meta property="og:description" content="Tutoring excellence online and in-person" />
+ <meta property="og:title" content="Tutoring Excellence Online and in Suffolk, VA - Carpenter Tutoring, LLC" />
+ <meta property="og:url" content="https://carpentertutoring.com" />
+ {% endblock %}
+</head>
+
+
+<!-- Google tag (gtag.js) -->
+<script async src="https://www.googletagmanager.com/gtag/js?id=G-RZLJ3ZBKZL"></script>
+<script>
+ window.dataLayer = window.dataLayer || [];
+ function gtag() { dataLayer.push(arguments); }
+ gtag('js', new Date());
+
+ gtag('config', 'G-RZLJ3ZBKZL');
+</script>
+
+
+<body>
+ <nav>
+ <a href="/#"><img alt="logo" src="/assets/logo-simple.png" /></a>
+ <a href="/k12">K-12</a>
+ <a href="/highered">Higher Ed</a>
+ <a href="/professional">Pros</a>
+ <a href="/posts">Posts</a>
+ <a href="/brochure">Brochure</a>
+ <a href="/#help">Helpful Links</a>
+ <a href="/policies">Policies</a>
+ <a href="/about">Team</a>
+ <a href="/#reviews">Reviews</a>
+ <a href="/#contact">Contact</a>
+ <a>More&hellip;</a>
+ </nav>
+
+ <main>
+ {% block main %}<p>Placeholder content</p>{% endblock %}
+ </main>
+
+ <footer>
+ <figure class="logo">
+ <picture>
+ <source srcset="/assets/logo.webp" type="image/webp" />
+ <source srcset="/assets/logo.png" type="image/png" />
+ <img alt="logo" src="/assets/logo.png" />
+ </picture>
+ </figure>
+
+ <div id="contact" class="buttons centered">
+ {% include "contact-buttons.html.j2" %}
+ </div>
+
+ <p>
+ &copy; 2019-{{ self::current_year() }} Carpenter Tutoring, LLC. All rights reserved.
+ </p>
+ <p>
+ <a href="https://g.page/carpenter-tutoring?share">Visit me on Google</a>
+ |
+ <a href="https://g.page/carpenter-tutoring/review?np">Submit a review</a>
+ |
+ <a href="mailto:webmaster@carpentertutoring.com">
+ Having trouble with our site?
+ </a>
+ </p>
+ </footer>
+
+ <script src="/nav.js"></script>
+ <link
+ href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=PT+Sans&display=swap"
+ rel="stylesheet" />
+</body>
+
+</html> \ No newline at end of file