Make WordPress Core

Changeset 2016


Ignore:
Timestamp:
12/30/2004 11:35:04 AM (21 years ago)
Author:
saxmatt
Message:

More Kubrick fixes

Location:
trunk/wp-content/themes/kubrick
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/kubrick/archive.php

    r2013 r2016  
    6161
    6262        <h2 class="center">Not Found</h2>
    63         <?php include (TEMPLATEPATH . "/searchform.php"; ?>
     63        <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    6464
    6565    <?php endif; ?>
  • trunk/wp-content/themes/kubrick/footer.php

    r2013 r2016  
    44    <p>
    55        <?php bloginfo('name'); ?> is proudly powered by
    6         <a href="http://wordpress.org">WordPress <?php echo $wp_version; ?></a>
    7         <!--
    8         and valid <a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional (most of the time)">XHTML</a> and
    9         <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS; hopefully...">CSS</a>.
    10         -->
     6        <a href="http://wordpress.org">WordPress</a>
    117        <br /><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>
    128        and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.
    13         <!-- Spawned in <?php timer_stop(1); ?> seconds. -->
    14         <a href="http://binarybonsai.com/kubrick/">Design by Michael Heilemann.</a>
     9        <!-- <?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. -->
    1510    </p>
    1611</div>
    1712</div>
    1813
    19 
     14<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
    2015<?php /* "Just what do you think you're doing Dave?" */ ?>
    2116
  • trunk/wp-content/themes/kubrick/index.php

    r2013 r2016  
    3333        <h2 class="center">Not Found</h2>
    3434        <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
    35         <?php include (TEMPLATEPATH . "/searchform.php"; ?>
     35        <?php include (TEMPLATEPATH . "/searchform.php"); ?>
    3636
    3737    <?php endif; ?>
  • trunk/wp-content/themes/kubrick/search.php

    r2013 r2016  
    4040
    4141        <h2 class="center">Not Found</h2>
    42         <?php include (TEMPLATEPATH . "/searchform.php"; ?>
     42        <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    4343
    4444    <?php endif; ?>
  • trunk/wp-content/themes/kubrick/searchform.php

    r2013 r2016  
    11<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    2 <div><input type="text" value="<?php echo bb_specialchars($s, 1); ?>" name="s" id="s" />
     2<div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" />
    33<input type="submit" id="searchsubmit" name="Submit" value="Go!" />
    44</div>
  • trunk/wp-content/themes/kubrick/sidebar.php

    r2013 r2016  
    33           
    44            <li>
    5                 <?php include (TEMPLATEPATH . "/searchform.php"; ?>
     5                <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    66            </li>
    77
     
    6767                </li>
    6868               
    69                 <li><h2><?php _e('Admin'); ?></h2>
    70                     <ul>
    71                         <li><a href="<?php echo get_settings('siteurl'); ?>/wp-login.php"><?php _e('Login'); ?></a></li>
    72                         <!--
    73                         <li><a href="<?php echo get_settings('siteurl'); ?>/wp-register.php"><?php _e('Register'); ?></a></li>
    74                         -->
    75                     </ul>
     69                <li><h2><?php _e('Meta'); ?></h2>
     70                <ul>
     71                    <li><?php wp_register(); ?></li>
     72                    <li><?php wp_loginout(); ?></li>
     73                    <li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
     74                    <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
     75                    <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WordPress</abbr></a></li>
     76                    <?php wp_meta(); ?>
     77                </ul>
    7678                </li>
    7779            <?php } ?>
Note: See TracChangeset for help on using the changeset viewer.