aboutsummaryrefslogtreecommitdiff
path: root/res/template-website/templates
diff options
context:
space:
mode:
Diffstat (limited to 'res/template-website/templates')
-rw-r--r--res/template-website/templates/footer.html2
-rw-r--r--res/template-website/templates/header.html16
-rw-r--r--res/template-website/templates/menu_listing.html1
-rw-r--r--res/template-website/templates/post_listing.html2
4 files changed, 21 insertions, 0 deletions
diff --git a/res/template-website/templates/footer.html b/res/template-website/templates/footer.html
new file mode 100644
index 0000000..7fb2bd6
--- /dev/null
+++ b/res/template-website/templates/footer.html
@@ -0,0 +1,2 @@
+ </body>
+</html>
diff --git a/res/template-website/templates/header.html b/res/template-website/templates/header.html
new file mode 100644
index 0000000..1dfcccf
--- /dev/null
+++ b/res/template-website/templates/header.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="description" content="">
+ <meta name="author" content="$author$">
+ <title>$author$ - $title$</title>
+ <link type="image/png" rel="icon" href="$res(favicon.png)$">
+ <link rel="stylesheet" href="$res(style.css)$" type="text/css" media="all">
+ </head>
+ <body>
+ <header>
+ <h1>$author$</h1>
+ <ul id="menu">$list_menu$</ul>
+ </header>
diff --git a/res/template-website/templates/menu_listing.html b/res/template-website/templates/menu_listing.html
new file mode 100644
index 0000000..9b080c7
--- /dev/null
+++ b/res/template-website/templates/menu_listing.html
@@ -0,0 +1 @@
+<li><a href="$link$">$title$</a></li>
diff --git a/res/template-website/templates/post_listing.html b/res/template-website/templates/post_listing.html
new file mode 100644
index 0000000..9f39bda
--- /dev/null
+++ b/res/template-website/templates/post_listing.html
@@ -0,0 +1,2 @@
+
+<li><a href="$link$">$title$ - $date$</a></li>