This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ucs/index.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (46 sloc)
2 KB
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
<?php get_header(); ?> | |
<div id="home"> | |
<div class="row-fluid"> | |
<div class="span9 posts"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<div class="post content clearfix"> | |
<div class="post-header"> | |
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> | |
</div> | |
<div class="post-content content"> | |
<?php | |
if ( has_post_thumbnail() ) { | |
echo '<div class="featured-image">'; | |
the_post_thumbnail('thumbnail'); | |
echo '</div>'; | |
} | |
?> | |
<?php | |
the_content(); | |
?> | |
</div> | |
<div class="post-meta"> | |
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_date( 'F j, Y', '<span class="post-date"><i class="icon-calendar"></i>', '</span>' );?></a> | |
<span class="post-author"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><i class="icon-user"></i><?php the_author_meta( 'display_name' ); ?></a></span> | |
<?php | |
// PHP Request: If the_tags is empty, do not generate the HTML. I don't want the labels and markup making empty space when there are no tags. | |
the_tags( '<span class="post-tags"><i class="icon-tags"></i>', ', ', '</span>' ); | |
?> | |
<?php comments_number( '', '<span class="post-comments"><i class="icon-comment"></i>1</span>', '<span class="post-comments"><i class="icon-comment"></i>%</span>' ); ?> | |
</div> | |
</div> | |
<?php endwhile; else: ?> | |
<div class="alert alert-error"> | |
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p> | |
</div> | |
<?php endif; ?> | |
<div class="navigation clearfix"> | |
<span class="older"><?php next_posts_link(__('« Older','example')) ?></span> <span class="newer"><?php previous_posts_link(__('Newer »','example')) ?></span> | |
</div><!-- /.navigation --> | |
</div> | |
<div class="span3"> | |
<?php get_sidebar('Sidebar'); ?> | |
</div> | |
</div> | |
</div> | |
<?php get_footer(); ?> |