From 000ab373552f5cda51dd501525ba4e579f9243d0 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 28 Jul 2016 09:08:37 -0400 Subject: reorganize post views --- data/themes/blank/templates/blog-list-item.html | 8 ++++++++ data/themes/blank/templates/blog-list.html | 17 +++++++++++++++++ data/themes/blank/templates/page.html | 15 --------------- data/themes/blank/templates/post-blog.html | 15 +++++++++++++++ data/themes/blank/templates/post-page.html | 15 +++++++++++++++ data/themes/blank/templates/post-project.html | 22 ++++++++++++++++++++++ 6 files changed, 77 insertions(+), 15 deletions(-) create mode 100644 data/themes/blank/templates/blog-list-item.html create mode 100644 data/themes/blank/templates/blog-list.html delete mode 100644 data/themes/blank/templates/page.html create mode 100644 data/themes/blank/templates/post-blog.html create mode 100644 data/themes/blank/templates/post-page.html create mode 100644 data/themes/blank/templates/post-project.html (limited to 'data/themes/blank') diff --git a/data/themes/blank/templates/blog-list-item.html b/data/themes/blank/templates/blog-list-item.html new file mode 100644 index 0000000..f2c6c9f --- /dev/null +++ b/data/themes/blank/templates/blog-list-item.html @@ -0,0 +1,8 @@ +
+ %{name|h}
+ + by %{user_name|h} + on %{posted_at_text|h} +

+ %{body} +
diff --git a/data/themes/blank/templates/blog-list.html b/data/themes/blank/templates/blog-list.html new file mode 100644 index 0000000..0ed98f0 --- /dev/null +++ b/data/themes/blank/templates/blog-list.html @@ -0,0 +1,17 @@ + + + + + %{name|h} + + %{styles} + + + +
%{ + body + }
+ + + %{scripts} + diff --git a/data/themes/blank/templates/page.html b/data/themes/blank/templates/page.html deleted file mode 100644 index 78737aa..0000000 --- a/data/themes/blank/templates/page.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - %{name | h} - - %{styles} - - - - %{body} - - - %{scripts} - diff --git a/data/themes/blank/templates/post-blog.html b/data/themes/blank/templates/post-blog.html new file mode 100644 index 0000000..ec99b37 --- /dev/null +++ b/data/themes/blank/templates/post-blog.html @@ -0,0 +1,15 @@ + + + + + %{name|h} + + %{styles} + + + + %{body} + + + %{scripts} + diff --git a/data/themes/blank/templates/post-page.html b/data/themes/blank/templates/post-page.html new file mode 100644 index 0000000..264d152 --- /dev/null +++ b/data/themes/blank/templates/post-page.html @@ -0,0 +1,15 @@ + + + + + %{name | h} + + %{styles} + + + + %{body} + + + %{scripts} + diff --git a/data/themes/blank/templates/post-project.html b/data/themes/blank/templates/post-project.html new file mode 100644 index 0000000..3fd5a76 --- /dev/null +++ b/data/themes/blank/templates/post-project.html @@ -0,0 +1,22 @@ + + + + + %{name | h} + + %{styles} + + + + %{body} + +

+ %{repo_url|h} +

+ + + %{scripts} + -- cgit v1.2.3