-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
36 lines (31 loc) · 977 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* @package WordPress
* @subpackage DE-Minimal
* Default Page Template
*/
get_header(); ?>
<div id="post-<?php the_ID(); ?>" class="post">
<div class="wrapper">
<div class="background">
<div id="logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php bloginfo( 'name' ); ?>">
<img src="<?php echo bloginfo('stylesheet_directory')?>/images/dennis-circle.svg" />
</a>
</div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="headerimage">
<?php the_post_thumbnail(); ?>
<div id="hgroup" style="text-align: center; position: absolute; bottom: 10%; width: 100%;">
<h1 class="entry" style="padding-bottom: 0;"><?php the_title(); ?></h1>
</div>
</div>
</div>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php //comments_template(); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>