adding fresh FoundationPress theme from scratch

This commit is contained in:
ut 2018-10-26 11:51:32 +02:00
commit 3785add5fa
127 changed files with 29293 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<?php
// If a featured image is set, insert into layout and use Interchange
// to select the optimal image size per named media query.
if ( has_post_thumbnail( $post->ID ) ) : ?>
<header class="featured-hero" role="banner" data-interchange="[<?php the_post_thumbnail_url( 'featured-small' ); ?>, small], [<?php the_post_thumbnail_url( 'featured-medium' ); ?>, medium], [<?php the_post_thumbnail_url( 'featured-large' ); ?>, large], [<?php the_post_thumbnail_url( 'featured-xlarge' ); ?>, xlarge]">
</header>
<?php endif;