diff options
author | Noah Loomans <noahloomans@gmail.com> | 2017-01-05 01:00:51 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2017-01-05 01:00:51 +0100 |
commit | 61a68559c3131f8291cb117ad90b37bfebcc7aba (patch) | |
tree | b6116665cde3c5ae60e9a6b5eb4b330ccbc56605 /_includes |
initial commit
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/footer.html | 2 | ||||
-rw-r--r-- | _includes/head.html | 7 | ||||
-rw-r--r-- | _includes/header.html | 5 |
3 files changed, 14 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..f893ae1 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,2 @@ +<footer> +</footer>
\ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..596185a --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,7 @@ +<head> + <meta charset="utf-8"> + <title>Noah Loomans</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="/style/main.css"> + <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet"> +</head>
\ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..59076e2 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,5 @@ +<header> + <a href="/"> + <div class="logo"></div> + </a> +</header>
\ No newline at end of file |