Skip to content

Instantly share code, notes, and snippets.

@arthurschreiber
Forked from anonymous/gist:642397
Created October 23, 2010 16:29
Show Gist options
  • Save arthurschreiber/642399 to your computer and use it in GitHub Desktop.
Save arthurschreiber/642399 to your computer and use it in GitHub Desktop.
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel=shortcut icon href=/beta/favicon.ico type=image/x-icon />
<title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script type="text/javascript" charset="utf-8" src="<?php bloginfo('stylesheet_directory'); ?>/javascripts/prototype.s2.js"></script>
<?php wp_head(); ?>
<script type="text/javascript" charset="utf-8" src="<?php bloginfo('stylesheet_directory'); ?>/javascripts/application.js"></script>
</head>
<body <?php body_class(); ?>>
<div id="header"></div>
<div id="nav">
<ul>
<?php wp_list_pages('title_li=&link_before=<span>&link_after=</span>&depth=1&sort_order=DESC' ); ?>
</ul>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment