diff options
| author | Steph Enders <smenders@gmail.com> | 2022-11-04 16:29:09 -0400 | 
|---|---|---|
| committer | Steph Enders <smenders@gmail.com> | 2022-11-04 16:29:40 -0400 | 
| commit | 65c5ad4194c5b89157a0d9b32d932695b7d0c747 (patch) | |
| tree | 4257a1b60023f443a3b3c4cf5bff79ddbea2aa59 /templates | |
| parent | d0b5b23a75801a7fb6cbc38730d7f171793dcf84 (diff) | |
| parent | ec955047f0b795582ae3a1eba4c8d0d3f78bc4ac (diff) | |
Merge branch 'markdown-support'
Add support for new pages via markdown
No blog templates are supported yet
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/page-footer.html | 3 | ||||
| -rw-r--r-- | templates/page-header.html | 18 | 
2 files changed, 21 insertions, 0 deletions
diff --git a/templates/page-footer.html b/templates/page-footer.html new file mode 100644 index 0000000..f5471aa --- /dev/null +++ b/templates/page-footer.html @@ -0,0 +1,3 @@ +  </div> +</body> +</html> diff --git a/templates/page-header.html b/templates/page-header.html new file mode 100644 index 0000000..f7bea88 --- /dev/null +++ b/templates/page-header.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +  <meta charset="utf-8"> +  <meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.6.0"> +  <title>senders.io - {PAGE}</title> +  <link rel='stylesheet' type='text/css' href='/index.css'> +  <meta name="viewport" content="width=device-width, initial-scale=1"> +</head> +<body> +  <div id='header'> +    <a class='title' href='/'>senders.io</a> +    <nav> +      <a href="/resume">Resume</a> <a href="/blog">Blog</a> <a href= +      "https://github.com/s3nd3r5">Github</a> +    </nav> +  </div> +  <div id='body'>  |