Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <meta charset="<?php bloginfo( 'charset' ); ?>" />
- <title>
- <?php
- global $page, $paged;
- wp_title( '|', true, 'right' );
- bloginfo( 'name' );
- $site_description = get_bloginfo( 'description', 'display' );
- if ( $site_description && ( is_home() || is_front_page() ) )
- echo " | $site_description";
- if ( $paged >= 2 || $page >= 2 )
- echo ' | ' . sprintf( __( 'Page %s', '' ), max( $paged, $page ) );
- ?>
- </title>
- <link rel="profile" href="http://gmpg.org/xfn/11" />
- <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
- <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
- <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/jquery/jquery-1.6.3.js"></script>
- <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/functions.js"></script>
- <?php wp_head();?>
- </head>
- <body <?php body_class(); ?> onLoad="windowResize();" onResize="windowResize();">
- <!--<?php wp_list_categories(); ?>-->
- <div id="wrapper">
- <div id="brand"></div>
- <div id="designer">
- design by <a style="color:#fff; text-decoration:none;" href="http://lauradesign.nl" target="_blank">LauraDesign</a>
- </div>
- <a href="http://lauradesign.nl/goeileven"><div id="logo"></div></a>
- <div id="navigation">
- <a href="beleef">beleef</a>
- <a href="geniet">geniet</a>
- <a href="verwen">verwen</a>
- <a href="ervaar">ervaar</a>
- <a href="vier">vier</a>
- <a href="vind" class="last">vind</a>
- </div>
- <div id="news">
- <a href="geproeft">Geproeft</a>
- <a href="proef">Proef</a>
- <?php
- $reversed_post = new WP_Query("category_name=proef&showposts=1&order=ASC");
- while($reversed_post->have_posts()):$reversed_post->the_post();
- ?>
- <div id="news-content">
- <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
- <div id="news-entry">
- <?php the_excerpt(); ?>
- </div>
- <?php endwhile; wp_reset_postdata(); ?>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement