diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/footer.html | 4 | ||||
-rw-r--r-- | templates/header.html | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..e656a2a --- /dev/null +++ b/templates/footer.html @@ -0,0 +1,4 @@ + </main> + <!-- TODO: put your copyright, footer, etc... here --> +</body> +</html>
\ No newline at end of file diff --git a/templates/header.html b/templates/header.html new file mode 100644 index 0000000..f61e243 --- /dev/null +++ b/templates/header.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>$TITLE$ | My website</title> +</head> +<body> + <!-- TODO: put your navigation, header, etc... here --> + <main>
\ No newline at end of file |