<?php require_once('../autoload.php');

	$session = new session();
	$session->sessionStart();

	$db = new database();
	$html = new html('Сезоны');

	$seasons = season::all('DESC', true);

	$html->css('seasons.css');
	$html->head();
	$html->body();
	$html->custom('season/seasons');
	$html->foot(true);
	
?>