<html>
<head>
<title><?php echo $lib->Title(); ?></title>
<meta name="keywoard" content="<?php echo $lib->Keywoard(); ?>">
</head>
<body>
<?php $recent = new WP_Query("showposts=5"); while ($recent->have_posts()) : $recent->the_post(); ?>
<p><img src="<?php echo $lib->Thumbnail('large', 'large.png'); ?>"/></p>
<?php endwhile; wp_reset_query(); ?>
</body>
</html>
|