Make WordPress Core

Changeset 2032 for trunk/index.php


Ignore:
Timestamp:
01/02/2005 02:47:45 AM (21 years ago)
Author:
rboren
Message:

Relocate default theme to themes/default. Remove special casing of default theme. Do not look directly in wp-content/ for default theme files. Simplify, simplify.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r2009 r2032  
    22/* Don't remove this line. */
    33require('./wp-blog-header.php');
    4 get_header();
    54?>
    6 
    7 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    8 
    9 <?php the_date('','<h2>','</h2>'); ?>
    10    
    11 <div class="post">
    12      <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    13     <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
    14    
    15     <div class="storycontent">
    16         <?php the_content(__('(more...)')); ?>
    17     </div>
    18    
    19     <div class="feedback">
    20             <?php wp_link_pages(); ?>
    21             <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
    22     </div>
    23    
    24     <!--
    25     <?php trackback_rdf(); ?>
    26     -->
    27 
    28 </div>
    29 
    30 <?php comments_template( is_single() ); // Get wp-comments.php template ?>
    31 
    32 <?php endwhile; else: ?>
    33 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    34 <?php endif; ?>
    35 
    36 <?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>
    37 
    38 <?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.