1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/views/page.tpl

64 lines
2.2 KiB
Smarty
Raw Normal View History

<?php /* -*- mode: html -*- */
$cd = new \Modl\ConfigDAO();
$config = $cd->get();
?><!DOCTYPE html>
<html ng-app="roster">
<head>
<meta charset="utf-8" />
<title><?php $this->title();?></title>
<meta name="description" content="<?php echo $config->description; ?>" />
<meta name="theme-color" content="#1C1D5B" />
<link rel="shortcut icon" href="<?php $this->linkFile('img/favicon.ico');?>" />
<link rel="stylesheet" href="<?php echo BASE_URI; ?>app/assets/js/leaflet.css" />
<script src="<?php echo BASE_URI; ?>app/assets/js/leaflet.js"></script>
<script src="<?php echo BASE_URI; ?>app/assets/js/favico.js"></script>
<!-- OTR -->
<!--<script src="<?php echo BASE_URI; ?>app/assets/js/otr/dep/bigint.js"></script>
<script src="<?php echo BASE_URI; ?>app/assets/js/otr/dep/crypto.js"></script>
<script src="<?php echo BASE_URI; ?>app/assets/js/otr/dep/eventemitter.js"></script>
<script src="<?php echo BASE_URI; ?>app/assets/js/otr/otr.js"></script>
<script src="<?php echo BASE_URI; ?>app/assets/js/cycle.js"></script>-->
<meta name="viewport" content="width=device-width, user-scalable=no">
<?php
$this->addCss('style.css');
$this->addCss('list.css');
$this->addCss('grid.css');
$this->addCss('article.css');
$this->addCss('form.css');
$this->addCss('color.css');
$this->addCss('block.css');
$this->addCss('menu.css');
$this->addCss('fonts.css');
$this->addCss('material-design-iconic-font.min.css');
$this->widget('System');
$this->scripts();
?>
</head>
<body>
<noscript>
<style type="text/css">
nav {display:none;} #content {display: none;}
</style>
<div class="warning" style="width: 500px; margin: 0 auto;">
<?php echo __('global.no_js'); ?>
</div>
</noscript>
<div id="snackbar" class="snackbar"></div>
<?php $this->widget('Dialog');?>
<?php $this->widget('Notification');?>
<?php $this->content();?>
<?php
$this->displayFooterDebug();
?>
<script type="text/javascript">movim_onload();</script>
</body>
</html>