Gloucester Registration Services. Series of brochures to outline the births, deaths, marriages etc. in the county
National advertsining campaign designed to promote the rising position of HBOS as a university graduate recruiter.
Designed as part of a marketing campaign to promote the publisher Word4Word under the theme “Behind every book you’ll find more than just words”
Design to explain a piece of workflow software highlighting the dependencies of inter-department and agency relationships.
Mamiya Advert Winner of Professional Photography Campaign of the year Award
While I’m changing everything about this website, I thought a bit of context to the montain biking obsession I currently have.
In June 2009 Mountain Mayhem will be held at Eastnor Park in Worcestershire. Mountain Mayhem is a 24 hour endurance mountain bike race which involves teams of four people (you do get soloists as well) riding a 8 to 10 mile course non-stop for 24 hours. The team who does the most laps, wins.
Last year, some friends did the race and so I went along to put up tents, clean bikes, make tea and get in the way. I became very interested in getting involved this year and so four of us with a combined age of neolithic artifacts are entering the race.
We are called Hanley WYLD – we live in a village called Hanley Swan and our surnames (Adrian White, Dave Yates, Bob Lewin and Andy Darwent) give us the WYLD suffix.
In a few short months it has to be said that I have become very hooked on mountain biking and cannot help but ramble on about it here. I do intend to put a little more substance to these rambles as time goes on. Bear with me.
For those still having some difficulty with the Corporatemag theme, namely getting links to work on an archive/category list. Try this:
Go to the Theme editor and select the archive.php file. Replace the content with the code in red below:
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class=”pagetitle”>Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class=”pagetitle”>Posts Tagged ‘<?php single_tag_title(); ?>’</h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F jS, Y’); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F, Y’); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘Y’); ?></h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class=”pagetitle”>Author Archive</h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h2 class=”pagetitle”>Blog Archives</h2>
<?php } ?>
<?php while(have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h3 class=”title”><a href=”<?php the_permalink() ?>” ><?php the_title(); ?></a></h3>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
</div>
<?php
endwhile;
$nextPost = get_next_posts_link(‘Next’);
$prevPost = get_previous_posts_link(‘Previous’);
?>
<div id=”post-nav”>
<?php if($nextPost): ?>
<div id=”nav-next-post”><?php echo $nextPost ?></div>
<?php endif ?>
<?php if($prevPost): ?>
<div id=”nav-prev-post”><?php echo $prevPost ?></div>
<?php endif ?>
<div class=”clear”></div>
</div><!– /post-nav –>
<?php else: ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>
Then go to the Theme editor and select the search.php file. Replace the content with the code in green below:
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : ?>
<h2 class=”pagetitle”>Search Results</h2>
<?php while(have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h3 class=”title”><a href=”<?php the_permalink() ?>” ><?php the_title(); ?></a></h3>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
</div>
<?php
endwhile;
$nextPost = get_next_posts_link(‘Next’);
$prevPost = get_previous_posts_link(‘Previous’);
?>
<div id=”post-nav”>
<?php if($nextPost): ?>
<div id=”nav-next-post”><?php echo $nextPost ?></div>
<?php endif ?>
<?php if($prevPost): ?>
<div id=”nav-prev-post”><?php echo $prevPost ?></div>
<?php endif ?>
<div class=”clear”></div>
</div><!– /post-nav –>
<?php else: ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>