Файл: system/connections/header_data.php
Строк: 25
<link rel="shortcut icon" href="/style/version/<?=version('DIR')?>/favicon/<?=version('FAVICON')?>?v=<?=front_hash()?>" />
<link rel="stylesheet" href="/style/version/<?=version('DIR')?>/styles.css?v=<?=front_hash()?>" type="text/css" />
<link rel="stylesheet" href="/style/font-awesome/font-awesome.css?v=<?=front_hash()?>">
<?
//Подгрузка CSS компонентов из папки /style/css/
$result = scandir(ROOT.'/style/css/', SCANDIR_SORT_ASCENDING);
for ($i = 0; $i < count($result); $i++){
if (preg_match('#.css$#i',$result[$i])){
?><link rel="stylesheet" href="/style/css/<?=$result[$i]?>?v=<?=front_hash()?>"><?
}
}
direct::components(ROOT.'/system/connections/cheader/data/', 0);