diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-04-05 14:39:45 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-04-05 14:39:45 -0500 |
commit | 31969e94c89cf9b1233a3439a4000667e51876bf (patch) | |
tree | 9544a3450e100ca0cd7e41099ee4b08ee159185a /src/public/zines.html | |
parent | ddddb356181baefbb03cbf710c9b6210b4d8de52 (diff) |
Add zines page
Diffstat (limited to 'src/public/zines.html')
-rw-r--r-- | src/public/zines.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/public/zines.html b/src/public/zines.html new file mode 100644 index 0000000..12b3b14 --- /dev/null +++ b/src/public/zines.html @@ -0,0 +1,32 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Mark's Kitchen - Zines</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <style> + .thumbnail img{ + height: 500px; + display: block; + } + </style> +</head> + +<body> + <div> + <h1> + <a class="navigation" href="/" title="marks.kitchen"><</a> + Zines + </h1> + <div class="thumbnail"> + <a href="/static/pf6.pdf" title="Palace Flophouse 6"> + <img src="/static/pf6.png"> + <span>Palace Flophouse 6 (download pdf)</span> + </a> + </div> + </div> +</body> + +</html>
\ No newline at end of file |