From 30c268fdabca62c7c4df6e8db7426666fc2be66a Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Sun, 5 May 2024 19:51:24 -0600 Subject: Change interface --- _includes/banner.html | 9 +++++++ _includes/footer.html | 11 -------- _includes/header.html | 51 +++-------------------------------- _includes/language_select_button.html | 25 +++++++++++++++++ _includes/links-list.html | 6 ----- _includes/navigation.html | 32 ++++++++++++++++++++++ _includes/navigation_buttons.html | 18 +++++++++++++ _includes/pagination.html | 49 +++++++++++++++++++++++++++++++++ _includes/recent_posts.html | 16 +++++++++++ _includes/sidebar.html | 22 --------------- _includes/sidenav.html | 10 +++++++ 11 files changed, 162 insertions(+), 87 deletions(-) create mode 100644 _includes/banner.html delete mode 100644 _includes/footer.html create mode 100644 _includes/language_select_button.html delete mode 100644 _includes/links-list.html create mode 100644 _includes/navigation.html create mode 100644 _includes/navigation_buttons.html create mode 100644 _includes/pagination.html create mode 100644 _includes/recent_posts.html delete mode 100644 _includes/sidebar.html create mode 100644 _includes/sidenav.html (limited to '_includes') diff --git a/_includes/banner.html b/_includes/banner.html new file mode 100644 index 0000000..33beb38 --- /dev/null +++ b/_includes/banner.html @@ -0,0 +1,9 @@ +
+ +
diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index 4798d16..0000000 --- a/_includes/footer.html +++ /dev/null @@ -1,11 +0,0 @@ -
-
- -
-
- - diff --git a/_includes/header.html b/_includes/header.html index f7a138f..1364b70 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -7,53 +7,8 @@ {{ site.name }} - - - - + + + - - - -
-
- -
-
diff --git a/_includes/language_select_button.html b/_includes/language_select_button.html new file mode 100644 index 0000000..2659b49 --- /dev/null +++ b/_includes/language_select_button.html @@ -0,0 +1,25 @@ + + + diff --git a/_includes/links-list.html b/_includes/links-list.html deleted file mode 100644 index fef5a32..0000000 --- a/_includes/links-list.html +++ /dev/null @@ -1,6 +0,0 @@ -

Links

- diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..90319c2 --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,32 @@ + diff --git a/_includes/navigation_buttons.html b/_includes/navigation_buttons.html new file mode 100644 index 0000000..5b2d8b0 --- /dev/null +++ b/_includes/navigation_buttons.html @@ -0,0 +1,18 @@ +
+
+ +
+ {% if page.previous %} + + {% t post.previous %} + + {% endif %} +
+
+
diff --git a/_includes/pagination.html b/_includes/pagination.html new file mode 100644 index 0000000..f692362 --- /dev/null +++ b/_includes/pagination.html @@ -0,0 +1,49 @@ +{% if paginator.total_pages > 1 %} +
+ +
+{% endif %} diff --git a/_includes/recent_posts.html b/_includes/recent_posts.html new file mode 100644 index 0000000..c079d30 --- /dev/null +++ b/_includes/recent_posts.html @@ -0,0 +1,16 @@ +{% if site.posts %} + +{% endif %} diff --git a/_includes/sidebar.html b/_includes/sidebar.html deleted file mode 100644 index 004a349..0000000 --- a/_includes/sidebar.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - diff --git a/_includes/sidenav.html b/_includes/sidenav.html new file mode 100644 index 0000000..7e9d945 --- /dev/null +++ b/_includes/sidenav.html @@ -0,0 +1,10 @@ +
+
+ {% include language_select_button.html %} + + + +
+ {% include navigation.html %} + {% include recent_posts.html %} +
-- cgit v1.2.3