diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-19 18:40:31 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-19 18:40:31 +0100 |
commit | 7b0baaab2b18e7232b48297de34887650f5b8ca6 (patch) | |
tree | cc7531f4ef3b5ed012616dca290e13065e95cab4 /templates/page/header.html | |
download | low-puszcza-7b0baaab2b18e7232b48297de34887650f5b8ca6.tar.gz low-puszcza-7b0baaab2b18e7232b48297de34887650f5b8ca6.zip |
Init
Diffstat (limited to 'templates/page/header.html')
-rw-r--r-- | templates/page/header.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/page/header.html b/templates/page/header.html new file mode 100644 index 0000000..8679cc2 --- /dev/null +++ b/templates/page/header.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html dir="ltr" lang="${lang}"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Language" content="${lang}" /> + <meta name="viewport" content="width=device-width" /> + <meta name="keywords" content="${keywords}" /> + <meta name="description" content="${description}" /> + <meta name="author" content="${author}" /> + <meta name="generator" content="${sitegenerator}" /> + <title>${title} - ${sitetitle}</title> + <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="print.css" type="text/css" media="print" /> + <link rel="alternate" href="atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" /> + <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="${sitetitle} Atom Feed with content" /> + <link rel="icon" href="/favicon.png" type="image/png" /> + </head> + <body> + <nav id="menuwrap"> + <table id="menu" width="100%" border="0"> + <tr> + <td id="links" align="left"> + <a href="https://puszcza.netlify.app">⬅ 19 PDH Puszcza</a> | + <a href="index.html">Kronika</a> | + <a href="https://pics.niedzwiedzinski.cyou" title="Galeria zdjęć z obozów">Zdjęcia</a> | + </td> + <td id="links-contact" align="right"> + <span class="hidden"> | </span> + <a href="https://facebook.com/19pdhpuszcza">FB</a> | + <a href="https://github.com/19pdh">Git</a> | + <a href="atom_content.xml">RSS</a> | + <a href="mailto:${sitemail}" title="Wyślij maila">Mail</a> + </td> + </tr> + </table> + </nav> + <hr class="hidden" /> + <main id="mainwrap"> + <div id="main"> + <article> |