-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d1f2cb
commit 48b43b0
Showing
4 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
/** | ||
* 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. | ||
* | ||
* Template name: Página Full Width | ||
* | ||
* @package Odin | ||
* @since 2.2.0 | ||
*/ | ||
|
||
get_header(); ?> | ||
<?php while( have_posts() ) : the_post();?> | ||
<?php the_post_thumbnail( 'full', array( 'class' => 'full-page-thumbnail') );?> | ||
<div class="container"> | ||
<div class="row"> | ||
<main id="content" class="col-md-12" tabindex="-1" role="main"> | ||
<header> | ||
<div class="col-md-12"> | ||
<h1> | ||
<?php the_title();?> | ||
</h1> | ||
</div><!-- .col-md-12 --> | ||
</header> | ||
<div class="col-md-12 woocommerce"> | ||
<?php the_content();?> | ||
</div><!-- .woocommerce --> | ||
</main><!-- #main --> | ||
</div><!-- .row --> | ||
</div><!-- .container --> | ||
<?php endwhile;?> | ||
<?php | ||
get_footer(); |