blogrow/inc/frontpage-top.php

24 lines
690 B
PHP
Raw Normal View History

2015-12-11 17:09:48 +01:00
<div class="frontpage-top pad">
2017-12-17 12:32:54 +01:00
<?php if ( get_theme_mod('front-picture') ): ?>
2015-12-11 17:09:48 +01:00
<div class="front-picture">
2017-12-17 12:32:54 +01:00
<img src="<?php echo get_theme_mod('front-picture'); ?>" alt="" />
2015-12-11 17:09:48 +01:00
</div>
<?php endif; ?>
<?php get_template_part('inc/page-title'); ?>
<?php while ( have_posts() ): the_post(); ?>
<?php the_content(); ?>
<div class="clear"></div>
<?php endwhile; ?>
2017-12-17 12:32:54 +01:00
<?php if ( get_theme_mod('front-button-text') && get_theme_mod('front-button-link') ): ?>
2015-12-11 17:09:48 +01:00
<div class="front-button">
2017-12-17 12:32:54 +01:00
<a href="<?php echo esc_attr( get_theme_mod('front-button-link') ); ?>">
<span><?php echo esc_attr( get_theme_mod('front-button-text') ); ?></span>
2015-12-11 17:09:48 +01:00
</a>
</div>
<?php endif; ?>
</div>