From 7d3c9ec7368a5d25235e818c2c147ba7e89f6567 Mon Sep 17 00:00:00 2001 From: Maƫl Gassmann Date: Sun, 27 Feb 2022 14:06:15 +0100 Subject: [+] Added base project --- res/template-website/.config | 3 +++ res/template-website/pages/Home | 3 +++ res/template-website/pages/Posts | 1 + res/template-website/pages/link_Projects | 1 + res/template-website/posts/Welcome | 2 ++ res/template-website/resources/favicon.png | 0 res/template-website/resources/style.css | 0 res/template-website/templates/footer.html | 2 ++ res/template-website/templates/header.html | 16 ++++++++++++++++ res/template-website/templates/menu_listing.html | 1 + res/template-website/templates/post_listing.html | 2 ++ 11 files changed, 31 insertions(+) create mode 100644 res/template-website/.config create mode 100644 res/template-website/pages/Home create mode 100644 res/template-website/pages/Posts create mode 100644 res/template-website/pages/link_Projects create mode 100644 res/template-website/posts/Welcome create mode 100644 res/template-website/resources/favicon.png create mode 100644 res/template-website/resources/style.css create mode 100644 res/template-website/templates/footer.html create mode 100644 res/template-website/templates/header.html create mode 100644 res/template-website/templates/menu_listing.html create mode 100644 res/template-website/templates/post_listing.html (limited to 'res') diff --git a/res/template-website/.config b/res/template-website/.config new file mode 100644 index 0000000..7956dad --- /dev/null +++ b/res/template-website/.config @@ -0,0 +1,3 @@ +author=John Doe +website=https://example.com/ +index=Home diff --git a/res/template-website/pages/Home b/res/template-website/pages/Home new file mode 100644 index 0000000..d35cb13 --- /dev/null +++ b/res/template-website/pages/Home @@ -0,0 +1,3 @@ +## Welcome + +Hi, enjoy my website. diff --git a/res/template-website/pages/Posts b/res/template-website/pages/Posts new file mode 100644 index 0000000..0d1ac2c --- /dev/null +++ b/res/template-website/pages/Posts @@ -0,0 +1 @@ + diff --git a/res/template-website/pages/link_Projects b/res/template-website/pages/link_Projects new file mode 100644 index 0000000..d74c395 --- /dev/null +++ b/res/template-website/pages/link_Projects @@ -0,0 +1 @@ +https://git.example.com diff --git a/res/template-website/posts/Welcome b/res/template-website/posts/Welcome new file mode 100644 index 0000000..1fb30aa --- /dev/null +++ b/res/template-website/posts/Welcome @@ -0,0 +1,2 @@ +$date(05.10.2021)$ +first post diff --git a/res/template-website/resources/favicon.png b/res/template-website/resources/favicon.png new file mode 100644 index 0000000..e69de29 diff --git a/res/template-website/resources/style.css b/res/template-website/resources/style.css new file mode 100644 index 0000000..e69de29 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 @@ + + 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 @@ + + + + + + + + $author$ - $title$ + + + + +
+

$author$

+ +
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 @@ +
  • $title$
  • 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 @@ + +
  • $title$ - $date$
  • -- cgit v1.2.3