From c2c018ff6fea4fcf32763d62d9f4aa774a6d814c Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Thu, 12 Mar 2026 23:56:36 -0400 Subject: [PATCH] Migrate theme templates to Bootstrap 5 components and grids --- category.php | 52 ++++++++++-------- footer.php | 13 ++--- front-page.php | 125 +++++++++++++++++++++++++------------------- header.php | 83 +++++++++++++++++------------ index.php | 58 +++++++++++--------- single.php | 109 ++++++++++++++++++++------------------ taxonomy-series.php | 82 +++++++++++++++++------------ 7 files changed, 301 insertions(+), 221 deletions(-) diff --git a/category.php b/category.php index 9775e82..60147fe 100644 --- a/category.php +++ b/category.php @@ -5,41 +5,51 @@ get_header(); ?> -
-
-

Archive:

- -
+
+
+

Archive:

+ +
-
+
-
+
-
> -
- ', '' ); ?> -
+
+
> +
+
+ ', ''); ?> +
-
- -
-
+
+ +
+
+
+
' . esc_html__( 'No posts found in this category.', 'wisdom1' ) . '

'; + echo '
'; // close row + + the_posts_navigation(array( + 'screen_reader_text' => 'Posts navigation', + 'prev_text' => '← Older Posts', + 'next_text' => 'Newer Posts →', + 'class' => 'd-flex justify-content-between my-5' + )); + else: + echo '
' . esc_html__('No posts found in this category.', 'wisdom1') . '
'; // close row and alert endif; ?> -
diff --git a/footer.php b/footer.php index b14a790..422615a 100644 --- a/footer.php +++ b/footer.php @@ -1,11 +1,12 @@ -
-
-

©

-
-
+
+
+

©

+
+
- + + \ No newline at end of file diff --git a/front-page.php b/front-page.php index 79a5940..c57dda4 100644 --- a/front-page.php +++ b/front-page.php @@ -3,81 +3,100 @@ * The front page template file. */ -get_header(); +get_header(); -$hero_bg = get_theme_mod( 'hero_background_image', get_template_directory_uri() . '/assets/images/hero-default.png' ); +$hero_bg = get_theme_mod('hero_background_image', get_template_directory_uri() . '/assets/images/hero-default.png'); ?> -
-
-

-

- +
+
+

+

+

+ +

+
-
+
-
-

Seek Truth. Lead with Grace.

-

Explorations into the heart of the Kingdom.

+
+

Seek Truth. Lead with Grace.

+

Explorations into the heart of the Kingdom.

-
+
- +
+
+
+ +
+ + ', ''); ?> + +
+ + + + + +
+
+ +
+ +
+
+ +
' . esc_html__( 'No posts found.', 'wisdom1' ) . '

'; + echo '
'; // close row + + the_posts_navigation(array( + 'screen_reader_text' => 'Posts navigation', + 'prev_text' => '← Older Posts', + 'next_text' => 'Newer Posts →', + 'class' => 'd-flex justify-content-between my-5' + )); + else: + echo '
' . esc_html__('No posts found.', 'wisdom1') . '
'; endif; ?> -
-
+ -