From d2e4da10c806d815eded44ade076babb78802c16 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Mon, 22 Jan 2024 13:06:19 -0500 Subject: Initial commit to new cgit platform --- _layouts/default.html | 11 +++++++++++ _layouts/homepage.html | 11 +++++++++++ _layouts/page.html | 6 ++++++ _layouts/post.html | 21 +++++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100755 _layouts/default.html create mode 100644 _layouts/homepage.html create mode 100755 _layouts/page.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100755 index 0000000..a099004 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,11 @@ + + + + {% include head.html %} + + + {% include navigation.html %} + {{ content }} + {% include footer.html %} + + diff --git a/_layouts/homepage.html b/_layouts/homepage.html new file mode 100644 index 0000000..01effd7 --- /dev/null +++ b/_layouts/homepage.html @@ -0,0 +1,11 @@ + + + + {% include head.html %} + + + {% include navigation.html %} + {{ content }} + {% include footer.html %} + + \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100755 index 0000000..f101e7f --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,6 @@ +--- +layout: default +--- + +{{ content }} + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..62a2ebc --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,21 @@ +--- +layout: default +--- + +

{{ page.title }}

+ +{{ content }} + +
+

Special Thanks

+

I'm extremely grateful for the support from the "Hall of Fame" supporters:
+ {% assign websites = site.site_listings %} + {% for item in websites %} + {% if item.hof == true %} + {{ item.pageurl }} + {% endif %} + {% endfor %} +

+

If you too would like to support this project and help fund more articles like this one:
Become a supporter today →

+
+ -- cgit v1.2.3-54-g00ecf