diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html/footer.html | 7 | ||||
-rw-r--r-- | templates/index.html/header.html | 41 | ||||
-rw-r--r-- | templates/index.html/item.html | 1 |
3 files changed, 49 insertions, 0 deletions
diff --git a/templates/index.html/footer.html b/templates/index.html/footer.html new file mode 100644 index 0000000..ead1ef0 --- /dev/null +++ b/templates/index.html/footer.html @@ -0,0 +1,7 @@ + </table> + </div> + <hr> + <a href="kronika.zip">📁 Pobierz archiwum</a> + </main> + </body> +</html> diff --git a/templates/index.html/header.html b/templates/index.html/header.html new file mode 100644 index 0000000..5e642f3 --- /dev/null +++ b/templates/index.html/header.html @@ -0,0 +1,41 @@ +<!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>Posts - ${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"> + <h1>Wpisy z kroniki</h1> + <table> diff --git a/templates/index.html/item.html b/templates/index.html/item.html new file mode 100644 index 0000000..9f011d4 --- /dev/null +++ b/templates/index.html/item.html @@ -0,0 +1 @@ +<tr><td><time>${created}</time></td><td><a href="${filename}">${title}</a></td></tr> |