-
Notifications
You must be signed in to change notification settings - Fork 2
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
7cd2208
commit 65da7d8
Showing
13 changed files
with
170 additions
and
87 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,18 +1,15 @@ | ||
<div class="row"> | ||
<div class="twelve columns"> | ||
<article id="<?php echo sanitize_title(get_the_title()); ?>" <?php post_class(); ?>> | ||
<div class="clearfix"> | ||
<div class="three columns alpha"> | ||
<header class="post-header"> | ||
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | ||
</header> | ||
</div> | ||
<div class="nine columns omega"> | ||
<section class="post-content"> | ||
<?php the_field('meaning'); ?> | ||
</section> | ||
</div> | ||
</div> | ||
</article> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<div class="container"> | ||
<div class="three columns"> </div> | ||
<div class="four columns"> | ||
<header class="post-header"> | ||
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | ||
</header> | ||
</div> | ||
<div class="five columns"> | ||
<section class="post-excerpt"> | ||
<?php the_field('meaning'); ?> | ||
</section> | ||
</div> | ||
</div> | ||
</div> | ||
</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,12 +1,23 @@ | ||
<div class="three columns"> | ||
<div class="row"> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<div class="container"> | ||
<div class="three columns"> | ||
<?php if(has_post_thumbnail()) : ?> | ||
<div class="thumbnail"> | ||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a> | ||
</div> | ||
<?php else : ?> | ||
| ||
<?php endif; ?> | ||
</div> | ||
<div class="four columns"> | ||
<header class="post-header"> | ||
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | ||
</header> | ||
</div> | ||
<div class="five columns"> | ||
<section class="post-excerpt"> | ||
<?php the_excerpt(); ?> | ||
</section> | ||
</article> | ||
</div> | ||
</div> | ||
</div> | ||
</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,17 +1,23 @@ | ||
<div class="three columns"> | ||
<div class="row"> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<div class="container"> | ||
<div class="three columns"> | ||
<?php if(has_post_thumbnail()) : ?> | ||
<div class="thumbnail"> | ||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a> | ||
</div> | ||
<?php else : ?> | ||
| ||
<?php endif; ?> | ||
</div> | ||
<div class="four columns"> | ||
<header class="post-header"> | ||
<?php if(has_post_thumbnail()) : ?> | ||
<div class="tool-thumbnail"> | ||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('tool-thumbnail', array('class' => 'scale-with-grid')); ?></a> | ||
</div> | ||
<?php endif; ?> | ||
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | ||
</header> | ||
</div> | ||
<div class="five columns"> | ||
<section class="post-excerpt"> | ||
<?php the_excerpt(); ?> | ||
</section> | ||
</article> | ||
</div> | ||
</div> | ||
</div> | ||
</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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | ||
<div class="container"> | ||
<div class="three columns"> | ||
<?php if(has_post_thumbnail()) : ?> | ||
<div class="thumbnail"> | ||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a> | ||
</div> | ||
<?php else : ?> | ||
| ||
<?php endif; ?> | ||
</div> | ||
<div class="four columns"> | ||
<header class="post-header"> | ||
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | ||
</header> | ||
</div> | ||
<div class="five columns"> | ||
<section class="post-excerpt"> | ||
<?php the_excerpt(); ?> | ||
</section> | ||
</div> | ||
</div> | ||
</article> |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.