bludit/admin/views/themes.php

24 lines
813 B
PHP
Raw Normal View History

2015-09-07 21:51:48 -03:00
<h2 class="title"><i class="fa fa-adjust"></i><?php $Language->p('Themes') ?></h2>
2015-08-01 23:47:45 -03:00
2015-08-02 19:05:20 -03:00
<?php
foreach($themes as $theme)
{
2015-08-12 17:15:17 -03:00
$installedCSS = '';
2015-08-02 19:05:20 -03:00
if($theme['dirname']==$Site->theme()) {
2015-08-12 17:15:17 -03:00
$installedCSS = 'themeBoxInstalled';
2015-08-02 19:05:20 -03:00
}
2015-08-12 17:15:17 -03:00
echo '<div class="themeBox '.$installedCSS.'">';
2015-08-02 19:05:20 -03:00
echo '<p class="name">'.$theme['name'].'</p>';
echo '<p>'.$theme['description'].'</p>';
2015-08-04 21:42:28 -03:00
echo '<span class="version">'.$Language->g('Version').': '.$theme['version'].'</span><span class="author">'.$Language->g('author').': <a targe="_blank" href="'.$theme['website'].'">'.$theme['author'].'</a></span>';
2015-08-02 19:05:20 -03:00
if($theme['dirname']!=$Site->theme()) {
2015-08-02 19:07:34 -03:00
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'install-theme/'.$theme['dirname'].'" class="btn btn-red btn-smaller">'.$Language->g('Install theme').'</a>';
2015-08-02 19:05:20 -03:00
}
echo '</div>';
}
?>