ZwiiCMS, le gestionnaire de site Web sans base de données à installer.
Conçu en 2008 par Rémi Jean, le développement a été repris par Frédéric Tempez en 2018.
zwii cms nosql json flat file
https://www.zwiicms.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
<?php $layout = new layout($this); ?> |
|
<!DOCTYPE html> |
|
<html prefix="og: http://ogp.me/ns#" lang="fr"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
<?php $layout->showMetaTitle(); ?> |
|
<?php $layout->showMetaDescription(); ?> |
|
<?php $layout->showMetaType(); ?> |
|
<?php $layout->showMetaImage(); ?> |
|
<?php $layout->showFavicon(); ?> |
|
<?php $layout->showVendor(); ?> |
|
<?php $layout->showStyle(); ?> |
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css"> |
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/light.css"> |
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css?<?php echo md5_file(self::DATA_DIR.'theme.css'); ?>"> |
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>"> |
|
</head> |
|
<body> |
|
<?php $layout->showNotification(); ?> |
|
<div id="site" class="container"> |
|
<section><?php $layout->showContent(); ?></section> |
|
</div> |
|
<?php $layout->showScript(); ?> |
|
</body> |
|
</html>
|