-
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
03bd07f
commit 89f1469
Showing
8 changed files
with
650 additions
and
35 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -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> |
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 |
---|---|---|
@@ -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>•</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>•</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> |
Oops, something went wrong.