public static function render_recent_sidebar($Events)
    {
        ?>
		<div class="box">
			<div class="head colhead_dark">
				<strong><a href="sitehistory.php">Latest site history</a></strong>
			</div>
			<ul class="stats nobullet">
<?php 
        $Categories = SiteHistory::get_categories();
        foreach ($Events as $Event) {
            ?>
				<li>
					<a href="sitehistory.php?action=search&amp;category=<?php 
            echo $Event['Category'];
            ?>
" class="brackets"><?php 
            echo $Categories[$Event['Category']];
            ?>
</a>
<?php 
            if (!empty($Event['Url'])) {
                ?>
					<a href="<?php 
                echo $Event['Url'];
                ?>
"><?php 
                echo Format::cut_string($Event['Title'], 20);
                ?>
</a>
<?php 
            } else {
                ?>
					<?php 
                echo Format::cut_string($Event['Title'], 20);
            }
            ?>
				</li>
<?php 
        }
        ?>
			</ul>
		</div>
<?php 
    }