diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index ae9fe23..b051c0f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,7 +3,9 @@ <head> <title> + {% block title %} Tutoring Excellence Online and in Suffolk, VA - Carpenter Tutoring, LLC + {% endblock %} </title> <style> {% block style %} @@ -15,14 +17,16 @@ <link rel="stylesheet" href="/widescreen.css" /> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> - <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: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" /> - <meta property="og:title" content="Tutoring Excellence Online and in Suffolk, VA - Carpenter Tutoring, LLC" /> + <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> |