<?php
/**
* This is the template that displays the 403 disp content
*
* This file is not meant to be called directly.
* It is meant to be called by an include in the main.page.php template.
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
* @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
*
* @package evoskins
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
global $disp_detail, $baseurl, $app_name;
echo '<div class="error_403">';
echo '<h2>'.T_('403 Forbidden').'</h2>';
echo '<p>'.T_('You are not allowed to view the requested URL.').'</p>';
// You may use this to further customize this page:
// echo $disp_detail;
echo '</div>';
echo '<div class="error_additional_content">';
// --------------------------------- START OF CLOUD TAG --------------------------------
// Call the coll_search_form widget:
skin_widget( array(
// CODE for the widget:
'widget' => 'coll_tag_cloud',
// Optional display params:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
'block_title_start' => '<h2>',
'block_title_end' => '</h2>',
) );
// ---------------------------------- END OF CLOUD TAG ---------------------------------
echo '</div>';
?>