diff options
author | Your Name <you@example.com> | 2025-01-08 01:25:07 +1100 |
---|---|---|
committer | Your Name <you@example.com> | 2025-01-08 01:25:07 +1100 |
commit | 8233414683d15b55fec1e1cc2e9227acc51ede72 (patch) | |
tree | 06ed76d9ae92f6173466a76c6e7dad0dfec522f6 /templates |
Version 1.00, initial commit
Diffstat (limited to 'templates')
-rw-r--r-- | templates/core/entry | 5 | ||||
-rw-r--r-- | templates/core/index | 11 | ||||
-rw-r--r-- | templates/core/page | 12 | ||||
-rw-r--r-- | templates/footer | 1 | ||||
-rw-r--r-- | templates/header | 1 |
5 files changed, 30 insertions, 0 deletions
diff --git a/templates/core/entry b/templates/core/entry new file mode 100644 index 0000000..ae3af04 --- /dev/null +++ b/templates/core/entry @@ -0,0 +1,5 @@ +<div class='entry'> + <div class='entry-title'><a href="<!--filename-->"><!--title--></a></div> + <div class='entry-date'><!--date--></div> + <div class='entry-subtitle'><!--subtitle--></div> +</div> diff --git a/templates/core/index b/templates/core/index new file mode 100644 index 0000000..9d53d86 --- /dev/null +++ b/templates/core/index @@ -0,0 +1,11 @@ +<html> + <head> + <meta charset="utf-8"> + <link href="<!--css_main-->" rel="stylesheet" type="text/css"> + </head> + <body> + <!--HEADER--> + <!--CORE/CONTENT--> + <!--FOOTER--> + </body> +</html> diff --git a/templates/core/page b/templates/core/page new file mode 100644 index 0000000..10937cc --- /dev/null +++ b/templates/core/page @@ -0,0 +1,12 @@ +<html> + <head> + <meta charset="utf-8"> + <link href="<!--css_main-->" rel="stylesheet" type="text/css"> + <link href="<!--css_article-->" rel="stylesheet" type="text/css"> + </head> + <body> + <!--HEADER--> + <!--CORE/CONTENT--> + <!--FOOTER--> + </body> +</html> diff --git a/templates/footer b/templates/footer new file mode 100644 index 0000000..4a8bf4d --- /dev/null +++ b/templates/footer @@ -0,0 +1 @@ +<footer></footer>
\ No newline at end of file diff --git a/templates/header b/templates/header new file mode 100644 index 0000000..68adf2e --- /dev/null +++ b/templates/header @@ -0,0 +1 @@ +<header></header>
\ No newline at end of file |