summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRyan D. Wilson <ryan@rdwilson.xyz>2021-03-14 22:59:46 -0300
committerRyan D. Wilson <ryan@rdwilson.xyz>2021-03-14 22:59:46 -0300
commite6c5e05e2eb6bb16fbefc5ca48596f18e3656e2b (patch)
treefb17a58f51571eabb6858d68b75eb6aa9ff4eed8 /templates
parent3a7b10af2c87d5708303b3cd223bea75ea77d89f (diff)
parent10ffebf2b48fc3de3dd19731195609b8cc4416a4 (diff)
Merge branch 'master' of https://github.com/LukeSmithxyz/based.cooking
Diffstat (limited to 'templates')
-rw-r--r--templates/article_entry.html1
-rw-r--r--templates/article_footer.html1
-rw-r--r--templates/article_header.html0
-rw-r--r--templates/article_list_footer.html1
-rw-r--r--templates/article_list_header.html2
-rw-r--r--templates/article_separator.html0
-rw-r--r--templates/footer.html10
-rw-r--r--templates/header.html8
-rw-r--r--templates/index_footer.html0
-rw-r--r--templates/index_header.html5
-rw-r--r--templates/tag_entry.html1
-rw-r--r--templates/tag_index_footer.html0
-rw-r--r--templates/tag_index_header.html5
-rw-r--r--templates/tag_link.html1
-rw-r--r--templates/tag_link_footer.html1
-rw-r--r--templates/tag_link_header.html1
-rw-r--r--templates/tag_list_footer.html1
-rw-r--r--templates/tag_list_header.html1
-rw-r--r--templates/tag_separator.html1
19 files changed, 40 insertions, 0 deletions
diff --git a/templates/article_entry.html b/templates/article_entry.html
new file mode 100644
index 0000000..4c149eb
--- /dev/null
+++ b/templates/article_entry.html
@@ -0,0 +1 @@
+<li><a href="$URL">$TITLE</a></li>
diff --git a/templates/article_footer.html b/templates/article_footer.html
new file mode 100644
index 0000000..331e55b
--- /dev/null
+++ b/templates/article_footer.html
@@ -0,0 +1 @@
+<p><i>Recipe posted on: $DATE_POSTED, last edited on: $DATE_EDITED, written by: $AUTHOR</i></p>
diff --git a/templates/article_header.html b/templates/article_header.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/templates/article_header.html
diff --git a/templates/article_list_footer.html b/templates/article_list_footer.html
new file mode 100644
index 0000000..3d3a44c
--- /dev/null
+++ b/templates/article_list_footer.html
@@ -0,0 +1 @@
+</ul>
diff --git a/templates/article_list_header.html b/templates/article_list_header.html
new file mode 100644
index 0000000..54ba16f
--- /dev/null
+++ b/templates/article_list_header.html
@@ -0,0 +1,2 @@
+<h2>Recipes</h2>
+<ul>
diff --git a/templates/article_separator.html b/templates/article_separator.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/templates/article_separator.html
diff --git a/templates/footer.html b/templates/footer.html
new file mode 100644
index 0000000..58b5364
--- /dev/null
+++ b/templates/footer.html
@@ -0,0 +1,10 @@
+<footer>
+ <hr/>
+ <a href=".">homepage</a>
+ <a href="./rss.xml">RSS</a>
+ <a href="./atom.xml">atom</a>
+ <br>
+ <p>All site content is in the Public Domain.</p>
+ <p><small>Powered by <a href="https://pedantic.software/git/blogit">blogit</a></small></p>
+</footer>
+</body></html>
diff --git a/templates/header.html b/templates/header.html
new file mode 100644
index 0000000..7756d4f
--- /dev/null
+++ b/templates/header.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <link rel="stylesheet" href="./style.css">
+ <title>$PAGE_TITLE</title>
+ </head>
+ <body>
diff --git a/templates/index_footer.html b/templates/index_footer.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/templates/index_footer.html
diff --git a/templates/index_header.html b/templates/index_header.html
new file mode 100644
index 0000000..0026f08
--- /dev/null
+++ b/templates/index_header.html
@@ -0,0 +1,5 @@
+<div class="banner">
+ <h1>🍳 $TITLE 🍲</h1>
+ <hr/>
+</div>
+<p>Only Based cooking. No ads, no tracking, nothing but based cooking.</p>
diff --git a/templates/tag_entry.html b/templates/tag_entry.html
new file mode 100644
index 0000000..cb23fee
--- /dev/null
+++ b/templates/tag_entry.html
@@ -0,0 +1 @@
+<a href="$URL">$NAME</a> \ No newline at end of file
diff --git a/templates/tag_index_footer.html b/templates/tag_index_footer.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/templates/tag_index_footer.html
diff --git a/templates/tag_index_header.html b/templates/tag_index_header.html
new file mode 100644
index 0000000..57fd89f
--- /dev/null
+++ b/templates/tag_index_header.html
@@ -0,0 +1,5 @@
+<div class="banner">
+ <h1>🍳 $TITLE 🍲</h1>
+ <hr/>
+</div>
+<p><i>Filtering recipes tagged:</i> <b>$TAGS</b></p>
diff --git a/templates/tag_link.html b/templates/tag_link.html
new file mode 100644
index 0000000..49cc68c
--- /dev/null
+++ b/templates/tag_link.html
@@ -0,0 +1 @@
+<a href="$TAG_LINK">$TAG_NAME</a>
diff --git a/templates/tag_link_footer.html b/templates/tag_link_footer.html
new file mode 100644
index 0000000..38bf9e7
--- /dev/null
+++ b/templates/tag_link_footer.html
@@ -0,0 +1 @@
+</i></p>
diff --git a/templates/tag_link_header.html b/templates/tag_link_header.html
new file mode 100644
index 0000000..c566585
--- /dev/null
+++ b/templates/tag_link_header.html
@@ -0,0 +1 @@
+<p><i> Recipe tags:
diff --git a/templates/tag_list_footer.html b/templates/tag_list_footer.html
new file mode 100644
index 0000000..38bf9e7
--- /dev/null
+++ b/templates/tag_list_footer.html
@@ -0,0 +1 @@
+</i></p>
diff --git a/templates/tag_list_header.html b/templates/tag_list_header.html
new file mode 100644
index 0000000..ae3a759
--- /dev/null
+++ b/templates/tag_list_header.html
@@ -0,0 +1 @@
+<p><i>Tags:
diff --git a/templates/tag_separator.html b/templates/tag_separator.html
new file mode 100644
index 0000000..c3a6e48
--- /dev/null
+++ b/templates/tag_separator.html
@@ -0,0 +1 @@
+, \ No newline at end of file