From 2a2c61de0e44adad26c0034dfda6594c34f0d834 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Fri, 6 Apr 2018 17:43:24 +0200 Subject: second commit --- templates/barepost.html | 5 +++++ templates/blog.html | 26 ++++++++++++++++++++++++++ templates/default.html | 26 ++++++++++++++++++++++++++ templates/microblog.html | 24 ++++++++++++++++++++++++ templates/micropost.html | 4 ++++ templates/oldpost.html | 27 +++++++++++++++++++++++++++ templates/post.html | 27 +++++++++++++++++++++++++++ templates/postlist.html | 30 ++++++++++++++++++++++++++++++ templates/postlistitem.html | 3 +++ 9 files changed, 172 insertions(+) create mode 100644 templates/barepost.html create mode 100644 templates/blog.html create mode 100644 templates/default.html create mode 100644 templates/microblog.html create mode 100644 templates/micropost.html create mode 100644 templates/oldpost.html create mode 100644 templates/post.html create mode 100644 templates/postlist.html create mode 100644 templates/postlistitem.html (limited to 'templates') diff --git a/templates/barepost.html b/templates/barepost.html new file mode 100644 index 0000000..4a7e2a3 --- /dev/null +++ b/templates/barepost.html @@ -0,0 +1,5 @@ +
+

$title$

+

Posted on $date$

+ $body$ +
diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..442b5c1 --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,26 @@ + + + + + Yuchen's Blog + + + + +
+ + +
+ +
+ $body$ + +
+ + diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..7cd66f1 --- /dev/null +++ b/templates/default.html @@ -0,0 +1,26 @@ + + + + + $title$ + + + + +
+ + +
+ +
+
+ $body$ +
+
+ + + diff --git a/templates/microblog.html b/templates/microblog.html new file mode 100644 index 0000000..66ef130 --- /dev/null +++ b/templates/microblog.html @@ -0,0 +1,24 @@ + + + + + Yuchen's Microblog + + + + +
+ + +
+ +
+ $body$ +
+ + + diff --git a/templates/micropost.html b/templates/micropost.html new file mode 100644 index 0000000..0b60430 --- /dev/null +++ b/templates/micropost.html @@ -0,0 +1,4 @@ +
+

$date$

+ $body$ +
diff --git a/templates/oldpost.html b/templates/oldpost.html new file mode 100644 index 0000000..92216fb --- /dev/null +++ b/templates/oldpost.html @@ -0,0 +1,27 @@ + + + + + $title$ + + + + +
+ + +
+ +
+
+

$title$

+

Posted on $date$

+ $body$ +
+
+ + diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..92216fb --- /dev/null +++ b/templates/post.html @@ -0,0 +1,27 @@ + + + + + $title$ + + + + +
+ + +
+ +
+
+

$title$

+

Posted on $date$

+ $body$ +
+
+ + diff --git a/templates/postlist.html b/templates/postlist.html new file mode 100644 index 0000000..52a019b --- /dev/null +++ b/templates/postlist.html @@ -0,0 +1,30 @@ + + + + + All posts + + + + + + + +
+ + +
+ +
+
+
    + $body$ +
+
+
+ + diff --git a/templates/postlistitem.html b/templates/postlistitem.html new file mode 100644 index 0000000..eb8cb5f --- /dev/null +++ b/templates/postlistitem.html @@ -0,0 +1,3 @@ +
  • + $title$ - $date$ +
  • -- cgit v1.2.3