aboutsummaryrefslogtreecommitdiff
path: root/res/template-website/templates
diff options
context:
space:
mode:
authorMaël Gassmann <mael.gassmann@students.bfh.ch>2022-02-27 14:06:15 +0100
committerMaël Gassmann <mael.gassmann@students.bfh.ch>2022-02-27 15:09:36 +0100
commit7d3c9ec7368a5d25235e818c2c147ba7e89f6567 (patch)
treed655395133c9ed44f48f72e9070abc42a715b850 /res/template-website/templates
[+] Added base project
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>