mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 17:58:59 +00:00
13 lines
372 B
PHP
13 lines
372 B
PHP
<?php
|
|
|
|
use App\Models\Settings;
|
|
|
|
$page->title = 'Terms and Conditions';
|
|
$page->meta_title = Settings::settingValue('site.main.title').' - Terms and conditions';
|
|
$page->meta_keywords = 'terms,conditions';
|
|
$page->meta_description = 'Terms and Conditions for '.Settings::settingValue('site.main.title');
|
|
|
|
$page->content = $page->smarty->fetch('terms.tpl');
|
|
|
|
$page->render();
|