diff options
Diffstat (limited to 'templates/master.html')
-rw-r--r-- | templates/master.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/master.html b/templates/master.html new file mode 100644 index 0000000..d0f3a8f --- /dev/null +++ b/templates/master.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en-US"> + + <head> + + <meta charset="utf-8" /> + <meta name="author" content="Alexander Rees Scerba" /> +{{ template "meta" . }} + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="stylesheet" href="/static/style.css" /> + <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" /> + + </head> + + <body> + + <nav aria-labelledby="global-navigation" class="nav"> + <ul> + <li><a href="/">Home</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/about">About</a></li> + </ul> + </nav> + + <main> + +{{ template "main" . }} + + </main> + + <footer> + <p>Contact: <a href="mailto:a.scerba02@gmail.com">ascerba@collegeforcreativestudies.edu</a></p> + </footer> + + </body> + +</html> |