From 90130b1d69faab293cf0a48dd8920ee878007909 Mon Sep 17 00:00:00 2001 From: deathrow Date: Thu, 19 May 2022 14:21:13 -0400 Subject: [PATCH] Update Title Formatting --- _items/Another guide.md | 2 +- _items/tools.md | 2 +- _layouts/default1.html | 91 +++++++++++++++++++++++++++++++++++++++++ _layouts/page1.html | 4 ++ index.md | 2 +- 5 files changed, 98 insertions(+), 3 deletions(-) create mode 100644 _layouts/default1.html create mode 100644 _layouts/page1.html diff --git a/_items/Another guide.md b/_items/Another guide.md index f175e2d..9820101 100644 --- a/_items/Another guide.md +++ b/_items/Another guide.md @@ -1,5 +1,5 @@ --- -layout: page +layout: default1 description: Just... a guide title: Another Guide :/ --- diff --git a/_items/tools.md b/_items/tools.md index 6494c65..c3ce980 100644 --- a/_items/tools.md +++ b/_items/tools.md @@ -1,5 +1,5 @@ --- -layout: default +layout: default1 description: Tools to use for your benefit title: Tools --- diff --git a/_layouts/default1.html b/_layouts/default1.html new file mode 100644 index 0000000..ea7ee8e --- /dev/null +++ b/_layouts/default1.html @@ -0,0 +1,91 @@ +--- +--- + + +{% include head.html %} + + +
+
+ + + + + + + + + + + + +
+
+
+ {% include header.html %} +
+
+
+
+ +
+ +
+

+
+

+

+ {{ content }} +
+
+ +
+
+ {% if site.avatar == true %} +
+
+ {% if site.avatar_image != null %} + me + {% endif %} + {% if site.avatar_description != null %} +

{{site.avatar_description}}

+ {% endif %} + +
+
+ {% endif %} + {% if site.blog == true %} +
+ +

Recent Posts:

+
+
    + {% for i in (1..site.recent_posts) %} + {% assign post = site.posts[i] %} +
  • + {{ post.title }} +
  • + {% endfor %} +
+
+ {% endif %} +
+
+
+
+ +
+ + + diff --git a/_layouts/page1.html b/_layouts/page1.html new file mode 100644 index 0000000..c5f4dc8 --- /dev/null +++ b/_layouts/page1.html @@ -0,0 +1,4 @@ +--- +layout: default1 +--- +{{ content }} diff --git a/index.md b/index.md index c74ed10..2b3b8c3 100644 --- a/index.md +++ b/index.md @@ -1,5 +1,5 @@ --- -layout: default +layout: default1 title: Anonymous Land description: A fun happy place. ---