From 1920b397fad8b1d6cd0233a5aa9a12365b16a287 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Wed, 2 Nov 2022 18:35:40 -0400 Subject: Initial commit --- templates/front_page.html | 24 ++++++++++++++++++++++++ templates/main.html | 47 +++++++++++++++++++++++++++++++++++++++++++++++ templates/note.html | 18 ++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 templates/front_page.html create mode 100644 templates/main.html create mode 100644 templates/note.html (limited to 'templates') diff --git a/templates/front_page.html b/templates/front_page.html new file mode 100644 index 0000000..ce987fb --- /dev/null +++ b/templates/front_page.html @@ -0,0 +1,24 @@ +
+
+
    +
  • Lucas
  • +
  • 卢卡斯
  • +
  • Λούκας
  • +
  • Lukáš
  • +
  • ルーカス
  • +
  • Lucas
  • +
+
+

is a developer working on cool things.

+
+ +

Notes

+
+ $for(notes)$ + +
+ $it.note$ +
+
+ $endfor$ +
diff --git a/templates/main.html b/templates/main.html new file mode 100644 index 0000000..80c55ab --- /dev/null +++ b/templates/main.html @@ -0,0 +1,47 @@ + + + + + + + + $title$ +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(keywords)$ + +$endif$ +$if(description-meta)$ + +$endif$ + + + + + + +
+ + frycon logo + + +
+
+$if(front_page)$ +${front_page()} +$else$ +${note()} +$endif$ +
+ + diff --git a/templates/note.html b/templates/note.html new file mode 100644 index 0000000..917d461 --- /dev/null +++ b/templates/note.html @@ -0,0 +1,18 @@ +
+

$title$

+ $if(date)$ +
+ $if(note_status)$ + $note_status$ + $endif$ +
+

Published: $date$

+

Last Edited: $last_edit$

+
+
+ $endif$ +
+
+
+$body$ +
-- cgit v1.2.3