Esempio n. 1
0
/**
 * The template for displaying all pages.
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site will use a
 * different template.
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Lesse Lite
 */
get_header();
?>

	<div id="primary" class="<?php 
lesse_primary_classes();
?>
">
		<main id="main" class="site-main" role="main">

			<?php 
while (have_posts()) {
    the_post();
    get_template_part('template-parts/content', 'page');
    // If comments are open or we have at least one comment, load up the comment template.
    if (comments_open() || get_comments_number()) {
        comments_template();
    }
}
// End of the loop.
?>
Esempio n. 2
0
<?php

/**
 * Template Name: Full Width Template
 *
 * Used for showing full width tempalte
 *
 * @package Lesse Lite
 */
get_header();
?>

	<div id="primary" class="<?php 
lesse_primary_classes('lesse-lite-full-page', 'large-12 medium-12 small-12 column');
?>
">
		<main id="main" class="site-main" role="main">

			<?php 
while (have_posts()) {
    the_post();
    ?>

				<?php 
    get_template_part('template-parts/content', 'page');
    ?>

				<?php 
    // If comments are open or we have at least one comment, load up the comment template.
    if (comments_open() || get_comments_number()) {
        comments_template();