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 6f81412 commit c4d6f5d
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions wp-content/themes/p2/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ function test(data) {
?>
<div id="main">
<?php global $paged;?>
<?php if (!isset($request->params['byid'])) : ?>
<h3><?php echo $txt['index_recent_updates']; ?></h3>
<?php endif; ?>
<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( have_posts( ) ) {
?>
Expand All @@ -109,7 +107,6 @@ function test(data) {
the_post( );
?>

<hr />
<?php
$current_user_id = get_the_author_ID( );
global $the_author;
Expand All @@ -118,19 +115,15 @@ 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 @@ -139,7 +132,7 @@ function test(data) {
<span><?php echo laconica_time($the_post->created); ?></span>
</a>
<span>from
<a href="">web</a>
<a href="http://www.tweetdeck.com/">Source</a>
</span>
</span>
</span>
Expand All @@ -151,6 +144,7 @@ function test(data) {
</span>


<hr />


<?php
Expand Down

0 comments on commit c4d6f5d

Please sign in to comment.