Skip to content

Commit

Permalink
v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonPadbury committed Jun 18, 2018
1 parent 1571277 commit a7ad115
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 54 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# b4st – A Bootstrap 4 Starter Theme, for WordPress

*Version 2.2*
*Version 2.3*

[https://github.com/SimonPadbury/b4st](https://github.com/SimonPadbury/b4st)

Expand Down Expand Up @@ -71,7 +71,7 @@ If you want want to see something in `b4st` and you can do it yourself, please f

## Looking for something more powerful? Try [Progenitor](https://github.com/Progenitor-Theme/)

Project: https://github.com/Progenitor-Theme/progenitor.
Project: https://github.com/Progenitor-Theme/progenitor.

Progenitor started as b4st but it has been developed to become somemething totally different. Progenitor is intended as a parent theme with pluggable functions, and hooks everywhere:

Expand Down
4 changes: 2 additions & 2 deletions author.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
?>
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -36,6 +36,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions category.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -17,6 +17,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<footer class="mt-5 bg-light">

<div class="container-responsive">
<div class="container">

<?php if(is_active_sidebar('footer-widget-area')): ?>
<div class="row border-bottom pt-5 pb-4" id="footer" role="navigation">
Expand Down
2 changes: 1 addition & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<body <?php body_class(); ?>>

<nav class="navbar navbar-expand-md navbar-light bg-light">
<div class="container-responsive">
<div class="container">

<a class="navbar-brand" href="<?php echo esc_url( home_url('/') ); ?>"><?php bloginfo('name'); ?></a>

Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -14,6 +14,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions page.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -12,6 +12,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions search.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -17,6 +17,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
4 changes: 2 additions & 2 deletions single.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<main class="container-responsive mt-5">
<main class="container mt-5">
<div class="row">

<div class="col-sm">
Expand All @@ -12,6 +12,6 @@
<?php get_sidebar(); ?>

</div><!-- /.row -->
</main><!-- /.container-responsive -->
</main><!-- /.container -->

<?php get_footer(); ?>
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/SimonPadbury/b4st
Description: Bootstrap Starter Theme for WordPress. Using Twitter Bootstrap 4.1.1
Author: Simon Padbury
Author URI: http://simonpadbury.github.io
Version: 2.2
Version: 2.3
Tags:
Text Domain: b4st
License: Unlicense
Expand Down
38 changes: 1 addition & 37 deletions theme/css/b4st.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,42 +50,6 @@ img,
height: auto;
}

/* Responsive Container (because Bootstrap 4.0.0 doesn't have this) */

.container-responsive {
width: 100%;
max-width: 1140px;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

.navbar > .container-responsive {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-responsive {
padding-right: 0;
padding-left: 0;
}
.navbar > .container,
.navbar > .container-responsive {
max-width: 1110px;
}

/* Author bio */

.author-bio .avatar {
Expand Down Expand Up @@ -130,4 +94,4 @@ textarea:focus::-moz-placeholder { color: transparent; } /* FF 19+ */
margin-top: 1rem;
}

/* Site footer */
/* Site footer */

0 comments on commit a7ad115

Please sign in to comment.