Hier ist die Index.php:
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<!--
Rosenkrieg: Template for Wordpress 1.5
The CSS, XHTML and design is released under GPL:
[url]http://www.opensource.org/licenses/gpl-license.php[/url]
-->
<head profile="http://gmpg.org/xfn/1">
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" />
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url'); ?> );
</style>
<meta name="author" content="Bonsai Prod." />
<meta name="publisher" content="Bonsai Prod." />
<meta name="copyright" content="Bonsai Prod." />
<meta name="page-topic" content="Der Rosenkrieg - Poetry-Slam in Bonn" />
<meta name="audience" content="alle" />
<meta name="robots" content="index,follow" />
<meta name="revisit-after" content="3 days" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
<body>
<div id="container">
<div id="header">
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
</div>
<div id="navi">
<div id="navi-innen">
<h2>Main</h2>
<ul>
<li><a href="<?php bloginfo('url'); ?>">Startseite</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
<h2><?php _e('Categories:'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1'); ?>
</ul>
<h2><?php _e('Archives:'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
<h2><label for="s"><?php _e('Search:'); ?></label></h2>
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<div>
<input type="text" name="s" id="s" size="17" class="navi-search" /><br />
<input type="submit" name="submit" value="<?php _e('Search'); ?>" class="search-button" />
</div>
</form>
<h2>Links</h2>
<ul>
<?php wp_get_links(1); ?>
</ul>
<h2><?php _e('Internes Gedöns:'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php if (function_exists('wp_theme_switcher')) { ?>
<h2>Styleswitcher</h2>
<?php wp_theme_switcher(); ?>
<?php } ?>
</div>
</div>
<hr />
<div id="content">
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="date"><?php the_date(); ?></div>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php comments_template(); ?>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<div class="center"><?php posts_nav_link(' ', __('« Previous'), __('Next »')); ?></div>
<div id="footer">Rosenkrieg für Wordpress von <a href="http://www.bonsai-productions.de">Bonsai Prod.</a></div>
</div>
</div>
</body>
</html>
Alles anzeigen