initial commit
This commit is contained in:
31
alm_templates/default.php
Normal file
31
alm_templates/default.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<!-- post thumbnail -->
|
||||
<?php if ( has_post_thumbnail()) : // Check if thumbnail exists ?>
|
||||
<a class="thumbnailwrapper" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
|
||||
<?php the_post_thumbnail('home-thumbnail'); ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<!-- /post thumbnail -->
|
||||
|
||||
<div class="metadata">
|
||||
<div class="categories">
|
||||
<?php the_category( ' | ' ); ?>
|
||||
</div>
|
||||
<div class="postedon">
|
||||
<?php the_time('Y. m. d.'); ?>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- post title -->
|
||||
<h2>
|
||||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
|
||||
</h2>
|
||||
<!-- /post title -->
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
Reference in New Issue
Block a user