Skip to content

Commit

Permalink
p3
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Hendrickson committed Sep 23, 2009
1 parent c4d6f5d commit 2c63787
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions wp-content/themes/p2/index.php
Expand Up @@ -96,7 +96,9 @@ function test(data) {
?>
<div id="main">
<?php global $paged;?>
<h2><?php echo $txt['index_recent_updates']; ?><?php if ($paged>1) echo('(Page '.$paged.') '); ?><a class="rss" href="<?php bloginfo( 'rss2_url' ); ?>"><?php echo $txt['index_rss']; ?></a> <span class="controls"></span></h2>
<?php if (!isset($request->params['byid'])) : ?>
<h3><?php echo $txt['index_recent_updates']; ?></h3>
<?php endif; ?>
<?php
if( have_posts( ) ) {
?>
Expand All @@ -115,15 +117,19 @@ function test(data) {



<?php if (!isset($request->params['byid'])) : ?>
<span>
<a href="<?php echo $the_author->profile_url; ?>">
<img src="<?php echo $the_author->avatar; ?>" height="48" width="48" border="0">
</a>
</span>
<?php endif; ?>
<span>
<?php if (!isset($request->params['byid'])) : ?>
<strong>
<a href="<?php echo $the_author->profile_url; ?>" title="<?php echo $the_author->name; ?>"><?php echo $the_author->nickname; ?></a>
</strong>
<?php endif; ?>
<span>
<?php the_content( __( '(More ...)' ) ); ?>
</span>
Expand All @@ -132,7 +138,7 @@ function test(data) {
<span><?php echo laconica_time($the_post->created); ?></span>
</a>
<span>from
<a href="http://www.tweetdeck.com/">Source</a>
<a href="">web</a>
</span>
</span>
</span>
Expand All @@ -144,8 +150,8 @@ function test(data) {
</span>


<hr />

<hr />

<?php
} // while have_posts
Expand Down

0 comments on commit 2c63787

Please sign in to comment.