View file modules/pages/rules.php

File size: 1.63Kb
<?php
$title_main = $lang['terms'].' - GOload '.$lang['title'];
require_once SYS.'/header.php';

$maxsize = $set['maxsize'];
$del = $set['del'];

echo '
	  <div class="block col-md-8">
		 <h6 class="round_title">
			<a class="left" onclick="window.history.back();">
			   <img src="/assets/img/left.svg" alt="back">
			</a>
			<div class="title back"><a href="/">'.$title.'</a> | '.$lang['terms'].'</div>
		 </h6>
		 <style>
			h5 {display: initial;}ol {list-style: none;counter-reset: li;}li {line-height: 22px;}li:before {counter-increment: li;content: counters(li,".") ". ";}
		 </style>
		 <div class="view line menu">
			<div style="margin-bottom: 8px;">'.$lang['rules_head'].'</div>
			<ol style="margin-left: 0;">
			   <li>
			   <h5>'.$lang['rules_title1'].'</h5>
			   <ol style="margin-bottom: 10px;">
				  <b>'.$lang['rules_1_0'].':</b>
				  <li>'.$lang['rules_1_1'].';</li>
				  <li>'.$lang['rules_1_2'].';</li>
				  <li>'.$lang['rules_1_3'].';</li>
				  <li>'.$lang['rules_1_4'].'.</li>
			   </ol>
			   </li>
			   <li>
			<h5>'.$lang['rules_title2'].'</h5>
			   <ol style="margin-bottom: 10px;">
				  <li>'.$lang['rules_2_1'].' '.$maxsize.'Mb;</li>
				  <li>'.$lang['rules_2_2'].';</li>
				  <li>'.$lang['rules_2_3'].'.</li>
			   </ol>
			   </li>
			   <li>
			<h5>'.$lang['rules_title3'].'</h5>
			   <ol style="margin-bottom: 10px;">
				  <li>'.$lang['rules_3_1'].';</li>
				  <li>'.$lang['rules_3_2'].'.</li>
			   </ol>
			   </li>
			</ol>
		 </div>
	  </div>
';
echo '
	  <div class="block col-md-8">
		 <div class="title">'.$lang['nav'].'</div>
		 <div class="link">
			<a href="/">'.$lang['go_home'].'</a>
		 </div>
	  </div>
';

?>