diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-05-18 10:44:04 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-05-18 10:44:04 -0400 |
commit | 37b6c927620cb68e01345d29daca960faeb80cb9 (patch) | |
tree | b2740d9a88fb238ea6aae44fb73481265b009e1d /templates/base.html | |
parent | d6a495165b4f36b8bf3137deac46f7bcfb1d7bf1 (diff) | |
download | carpentertutoring-37b6c927620cb68e01345d29daca960faeb80cb9.tar.xz carpentertutoring-37b6c927620cb68e01345d29daca960faeb80cb9.zip |
chore: rename jinja templates
Also wrap style block so auto formatter doesn't pick it up and wreck
CSS.
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index 49d8c40..0000000 --- a/templates/base.html +++ /dev/null @@ -1,95 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - -<head> - <title> - {% block title %} - Tutoring Excellence Online and in Suffolk, VA - Carpenter Tutoring, LLC - {% endblock %} - </title> - <style> - {% block style %} - {% include "styles.css" %} - {% endblock %} - </style> - <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…</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" %} - </div> - - <p> - © 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> |