diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/footer.liquid | 13 | ||||
-rw-r--r-- | _includes/head.liquid | 11 | ||||
-rw-r--r-- | _includes/nav.liquid | 26 | ||||
-rw-r--r-- | _includes/style.liquid | 1 |
4 files changed, 51 insertions, 0 deletions
diff --git a/_includes/footer.liquid b/_includes/footer.liquid new file mode 100644 index 0000000..c086a98 --- /dev/null +++ b/_includes/footer.liquid @@ -0,0 +1,13 @@ +<footer class="footer"> + <div class="content has-text-centered"> + <p> + © 2020 Carpenter Tutoring, LLC. All rights reserved. + </p> + <p> + Something wrong? + <a href="mailto:webmaster@carpentertutoring.com"> + Tell the webmaster. + </a> + </p> + </div> +</footer> diff --git a/_includes/head.liquid b/_includes/head.liquid new file mode 100644 index 0000000..a1a082e --- /dev/null +++ b/_includes/head.liquid @@ -0,0 +1,11 @@ +<meta charset="utf-8" /> +<meta http-equiv="X-UA-Compatible" content="IE=edge" /> +<meta name="viewport" content="width=device-width, initial-scale=1" /> +<meta property="og:type" content="website" /> +<meta property="og:site_name" content="Carpenter Tutoring" /> +<meta property="og:title" content="Carpenter Tutoring" /> +<meta property="og:description" content="" /> +<meta property="og:url" content="" /> +<meta property="og:image" content="" /> +<title>{{ page.title }}</title> +<link rel="stylesheet" href="index.css" /> diff --git a/_includes/nav.liquid b/_includes/nav.liquid new file mode 100644 index 0000000..982660b --- /dev/null +++ b/_includes/nav.liquid @@ -0,0 +1,26 @@ +<nav class="navbar is-fixed-top"> + <div class="navbar-brand"> + <a class="navbar-item" href="/#"> + <img src="/assets/logo-simple.png" /> + </a> + <a role="button" class="navbar-burger" data-target="navMenu"> + <span></span> + <span></span> + <span></span> + </a> + </div> + <div class="navbar-menu" id="navMenu"> + <div class="navbar-start"></div> + <div class="navbar-end"> + <a class="navbar-item" href="/#offerings"> + Offerings + </a> + <a class="navbar-item" href="/#about"> + About + </a> + <a class="navbar-item" href="/#contact"> + Contact Me + </a> + </div> + </div> +</nav> diff --git a/_includes/style.liquid b/_includes/style.liquid new file mode 100644 index 0000000..f02b77e --- /dev/null +++ b/_includes/style.liquid @@ -0,0 +1 @@ +<link rel="stylesheet" href="/styles/index.css" /> |