File "PageNotFound.php"

Full Path: /home/pumpbmko/public_html/wp-content/themes/momota/lib/kubio-themebase/src/Components/PageNotFound.php
File size: 357 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Kubio\Theme\Components;

use ColibriWP\Theme\View;

class PageNotFound extends \ColibriWP\Theme\Components\PageNotFound {

	public function renderContent( $parameters = array() ) {    ?>
		<div id="content">
			<?php
			View::partial(
				'content',
				'404',
				array(
					'component' => $this,
				)
			);
			?>
		</div> 
		<?php
	}
}