forked from ZwiiCMS-Team/ZwiiCMS
25 lines
631 B
PHP
25 lines
631 B
PHP
|
<?php ?>
|
||
|
<div class="row">
|
||
|
<div class="col2">
|
||
|
<?php echo template::button('themeBack', [
|
||
|
'class' => 'buttonGrey',
|
||
|
'href' => helper::baseUrl(false),
|
||
|
'ico' => 'home',
|
||
|
'value' => 'Accueil'
|
||
|
]); ?>
|
||
|
</div>
|
||
|
<div class="col2">
|
||
|
<?php echo template::button('themeManage', [
|
||
|
'href' => helper::baseUrl() . 'theme/themeImport',
|
||
|
'value' => 'Importer les données du thème'
|
||
|
]); ?>
|
||
|
</div>
|
||
|
<div class="col2">
|
||
|
<?php echo template::button('themeManage', [
|
||
|
'href' => helper::baseUrl() . 'theme/themeExport',
|
||
|
'value' => 'Exporter les données du thème'
|
||
|
]); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php?>
|