Skip to content

Commit

Permalink
RSVP is ready to go!
Browse files Browse the repository at this point in the history
  • Loading branch information
kingkool68 committed Dec 20, 2015
1 parent 03bd07f commit 89f1469
Show file tree
Hide file tree
Showing 8 changed files with 650 additions and 35 deletions.
8 changes: 4 additions & 4 deletions content-page.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<article class="page">

<?php //do_action( 'zah_content_header', $post ); ?>

<h1 class="title"><?php the_title(); ?></h1>
<div class="inner">
<h1 class="title"><?php the_title(); ?></h1>

<?php the_content(); ?>
</div>

<?php do_action( 'zah_content_footer', $post ); ?>

</article>
</article>
21 changes: 11 additions & 10 deletions content-post.php
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
<article class="post">

<?php do_action( 'zah_content_header', $post ); ?>

<h1 class="title">
<?php if( !is_singular() ) { ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
</h1>
<h2 class="time-stamp"><time datetime="<?php echo get_post_time( 'c', true ) ?>"><?php the_time( get_zah_time_format() ); ?></time> <b>&bull;</b> <span class="how-old-was-zadie"><?php echo how_old_was_zadie(); ?></span></h2>

<div class="inner">
<h1 class="title">
<?php if( !is_singular() ) { ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
</h1>
<h2 class="time-stamp"><time datetime="<?php echo get_post_time( 'c', true ) ?>"><?php the_time( get_zah_time_format() ); ?></time> <b>&bull;</b> <span class="how-old-was-zadie"><?php echo how_old_was_zadie(); ?></span></h2>
<?php the_content(); ?>
</div>

<?php do_action( 'zah_content_footer', $post ); ?>

</article>
</article>
Loading

0 comments on commit 89f1469

Please sign in to comment.