1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-05 18:38:18 +03:00
ifhub.club/application/frontend/skin/developer/settings/config/config.php
2017-01-21 21:13:48 +07:00

47 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$config = array();
/**
* Тип сетки
*
* fluid - резина
* fixed - фиксированная ширина
*/
$config['view']['grid']['type'] = 'fluid';
// Настройки резины
$config['view']['grid']['fluid_min_width'] = '320px';
$config['view']['grid']['fluid_max_width'] = '1200px';
// Настройки фиксированная ширина
$config['view']['grid']['fixed_width'] = '1000px';
// Показывать баннер с лого и описанием или нет
$config['view']['layout_show_banner'] = true;
// Подключение скриптов шаблона
$config['head']['template']['js'] = array(
'___path.skin.assets.web___/js/init.js'
);
// Подключение стилей шаблона
$config['head']['template']['css'] = array(
"___path.skin.assets.web___/css/layout.css",
"___path.skin.assets.web___/css/print.css"
);
// Подключение темы
if (Config::Get('view.theme')) {
$config['head']['template']['css'][] = "___path.skin.web___/themes/___view.theme___/style.css";
}
/**
* SEO
*/
// Тег используемый для заголовков топиков
$config['view']['seo']['topic_heading'] = 'h1';
$config['view']['seo']['topic_heading_list'] = 'h2';
return $config;