* @var number $offset       Number of publications to skip.
 * @var number $paged        Current page number
 * @var object $post         Global Post object representing the page the shortcode is used on.
 */
extract($wppa_container);
?>
<div class="publication-archive">
<?php 
foreach ($publications as $publication) {
    ?>
	<?php 
    $pub = new WP_Publication_Archive_Item($publication->ID, $publication->post_title, $publication->post_date);
    ?>
	<div class="single-publication">
		<?php 
    $pub->the_thumbnail();
    ?>
		<?php 
    $pub->the_title();
    ?>
		<?php 
    $pub->the_authors();
    ?>
		<?php 
    $pub->the_uri();
    ?>
		<?php 
    $pub->the_summary();
    ?>
	    <?php 
    $pub->the_keywords();