themes-wordpress/varia/index.php
Allan Cole a4c5cc7f1d Varia: Refactoring responsive logic for default, wide, and full alignment settings
- Makes .entry-content 100% wide to let the box-model work determine .alignfull widths
- .alignwide and default widths now have a fixed width, and a responsive 100% max-width
- Updates utility classes to work with this change
- Improves nested block behaviors and reduces CSS load
- Removes .responsive-max-width utility classes from .entry-content and simialr wrappers that no longer need it
- Renames responsive @extends and @mixins to match Gutenberg pre/suffixes
2019-08-12 17:49:50 -04:00

47 lines
1 KiB
PHP
Executable file

<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Varia
* @since 1.0.0
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content/content' );
}
// Previous/next page navigation.
varia_the_posts_navigation();
} else {
// If no content, include the "No posts found" template.
get_template_part( 'template-parts/content/content', 'none' );
}
?>
</main><!-- .site-main -->
</section><!-- .content-area -->
<?php
get_footer();