2003-12-11 01:22:36 +01:00
|
|
|
<?php
|
2004-04-16 04:24:37 +02:00
|
|
|
/* Don't remove this lines. */
|
|
|
|
require('./wp-blog-header.php');
|
2003-05-23 15:49:31 +02:00
|
|
|
?>
|
2003-05-06 10:06:57 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2003-04-01 16:12:34 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
2004-04-16 04:24:37 +02:00
|
|
|
<head profile="http://gmpg.org/xfn/1">
|
2003-12-25 01:01:31 +01:00
|
|
|
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
|
2003-04-03 10:16:37 +02:00
|
|
|
|
2004-03-01 07:13:32 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
|
2003-12-18 10:45:34 +01:00
|
|
|
<meta name="generator" content="WordPress <?php echo $wp_version; ?>" /> <!-- leave this for stats -->
|
2003-05-21 13:29:44 +02:00
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<style type="text/css" media="screen">
|
2004-02-26 17:15:48 +01:00
|
|
|
@import url( <?php echo get_settings('siteurl'); ?>/wp-layout.css );
|
2003-04-03 10:16:37 +02:00
|
|
|
</style>
|
|
|
|
|
2004-02-26 17:15:48 +01:00
|
|
|
<link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" />
|
2004-02-21 13:28:36 +01:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
|
2003-12-18 10:45:34 +01:00
|
|
|
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
|
2003-12-30 13:05:25 +01:00
|
|
|
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
|
2003-12-18 10:45:34 +01:00
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
|
2003-08-06 00:44:38 +02:00
|
|
|
<?php get_archives('monthly', '', 'link'); ?>
|
2003-11-04 01:19:53 +01:00
|
|
|
<?php //comments_popup_script(); // off by default ?>
|
2004-04-16 04:24:37 +02:00
|
|
|
<?php wp_head(); ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
</head>
|
2003-04-03 10:16:37 +02:00
|
|
|
|
2003-04-01 16:12:34 +02:00
|
|
|
<body>
|
2003-07-23 22:27:34 +02:00
|
|
|
<div id="rap">
|
2004-04-16 04:24:37 +02:00
|
|
|
<h1 id="header"><a href="<?php echo get_settings('siteurl'); ?>"><?php bloginfo('name'); ?></a></h1>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<div id="content">
|
2004-04-16 04:24:37 +02:00
|
|
|
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-12-04 23:53:15 +01:00
|
|
|
<?php the_date('','<h2>','</h2>'); ?>
|
|
|
|
|
|
|
|
<div class="post">
|
|
|
|
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3>
|
2004-04-16 03:56:04 +02:00
|
|
|
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
|
2003-12-04 23:53:15 +01:00
|
|
|
|
|
|
|
<div class="storycontent">
|
|
|
|
<?php the_content(); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="feedback">
|
2004-04-16 03:56:04 +02:00
|
|
|
<?php link_pages('<br />'. __("Pages:").' ', '<br />', 'number'); ?>
|
|
|
|
<?php comments_popup_link(__("Comments (0)"), __("Comments (1)"), __("Comments (%)")); ?>
|
2003-12-04 23:53:15 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
<?php trackback_rdf(); ?>
|
|
|
|
-->
|
2003-08-24 18:51:32 +02:00
|
|
|
|
2003-12-18 10:36:13 +01:00
|
|
|
<?php include(ABSPATH . 'wp-comments.php'); ?>
|
2003-12-04 23:53:15 +01:00
|
|
|
</div>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-16 04:24:37 +02:00
|
|
|
<?php endforeach; else: ?>
|
2004-04-16 03:56:04 +02:00
|
|
|
<p><?php _e("Sorry, no posts matched your criteria."); ?></p>
|
2004-04-16 04:24:37 +02:00
|
|
|
<?php endif; ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="menu">
|
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2004-01-01 23:13:06 +01:00
|
|
|
<?php get_links_list(); ?>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li id="categories"><?php _e("Categories:"); ?>
|
2003-05-06 10:06:57 +02:00
|
|
|
<ul>
|
2004-02-13 17:14:36 +01:00
|
|
|
<?php wp_list_cats(); ?>
|
2003-05-06 10:06:57 +02:00
|
|
|
</ul>
|
2003-04-03 10:16:37 +02:00
|
|
|
</li>
|
2004-02-27 20:22:56 +01:00
|
|
|
<li id="search">
|
2004-04-16 03:56:04 +02:00
|
|
|
<label for="s"><?php _e("Search:"); ?></label>
|
2004-02-27 20:22:56 +01:00
|
|
|
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
|
2003-04-03 10:16:37 +02:00
|
|
|
<div>
|
2004-02-27 20:22:56 +01:00
|
|
|
<input type="text" name="s" id="s" size="15" /><br />
|
2004-04-16 04:24:37 +02:00
|
|
|
<input type="submit" name="submit" value="<?php _e("Search"); ?>" />
|
2003-04-03 10:16:37 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</li>
|
2004-04-16 04:24:37 +02:00
|
|
|
<li id="archives"><?php _e("Archives:"); ?>
|
2003-05-06 10:06:57 +02:00
|
|
|
<ul>
|
2003-09-22 01:22:49 +02:00
|
|
|
<?php get_archives('monthly'); ?>
|
2003-05-06 10:06:57 +02:00
|
|
|
</ul>
|
2003-04-03 10:16:37 +02:00
|
|
|
</li>
|
2004-01-24 23:52:22 +01:00
|
|
|
<li id="calendar">
|
2003-11-03 18:22:01 +01:00
|
|
|
<?php get_calendar(); ?>
|
2003-09-20 01:13:09 +02:00
|
|
|
</li>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li id="other"><?php _e("Other:"); ?>
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li><a href="<?php echo get_settings('siteurl'); ?>/wp-login.php"><?php _e("Login"); ?></a></li>
|
|
|
|
<li><a href="<?php echo get_settings('siteurl'); ?>/wp-register.php"><?php _e("Register"); ?></a></li>
|
2003-04-03 10:16:37 +02:00
|
|
|
</ul>
|
|
|
|
</li>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li id="meta"><?php _e("Meta:"); ?>
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e("Syndicate this site using RSS"); ?>"><?php _e("<abbr title=\"Really Simple Syndication\">RSS</abbr> 2.0"); ?></a></li>
|
2004-04-16 04:24:37 +02:00
|
|
|
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e("The latest comments to all posts in RSS"); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr> 2.0'); ?></a></li>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li><a href="http://validator.w3.org/check/referer" title="<?php _e("This page validates as XHTML 1.0 Transitional"
|
2004-04-16 04:24:37 +02:00
|
|
|
); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
|
2004-04-16 03:56:04 +02:00
|
|
|
<li><a href="http://wordpress.org" title="<?php _e("Powered by WordPress; state-of-the-art semantic personal publishing platform."); ?>">WP</a></li>
|
2003-04-03 10:16:37 +02:00
|
|
|
</ul>
|
|
|
|
</li>
|
2003-06-13 00:43:34 +02:00
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
</ul>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2003-07-23 22:27:34 +02:00
|
|
|
</div>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2004-04-16 04:24:37 +02:00
|
|
|
<p class="credit"><!--<?php echo $wpdb->querycount; ?> queries.--> <?php timer_stop(1); ?> — <cite><?php echo sprintf(__("Powered by <a href='http://wordpress.org' title='%s'><strong>WordPress</strong></a>"), __("Powered by WordPress, state-of-the-art semantic personal publishing platform")); ?></cite></p>
|
2003-05-06 10:06:57 +02:00
|
|
|
</body>
|
2004-04-16 03:56:04 +02:00
|
|
|
</html>
|