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
2016-03-06 20:46:54 +01:00

54 lines
1.9 KiB
Smarty

<!DOCTYPE html>
<html ng-app="roster">
<head>
<meta charset="utf-8" />
<title><?php $this->title();?></title>
<meta name="theme-color" content="#1C1D5B" />
<?php $this->meta();?>
<meta name="application-name" content="Movim">
<link rel="shortcut icon" href="<?php $this->linkFile('img/favicon.ico');?>" />
<link rel="icon" type="image/png" href="<?php $this->linkFile('img/app/48.png');?>" sizes="48x48">
<link rel="icon" type="image/png" href="<?php $this->linkFile('img/app/96.png');?>" sizes="96x96">
<link rel="icon" type="image/png" href="<?php $this->linkFile('img/app/128.png');?>" sizes="128x128">
<script src="<?php echo BASE_URI; ?>app/assets/js/favico.js"></script>
<meta name="viewport" content="width=device-width, user-scalable=no">
<?php
$this->addCss('style.css');
$this->addCss('header.css');
$this->addCss('listn.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="hiddendiv"></div>
<div id="snackbar" class="snackbar"></div>
<?php $this->widget('Dialog');?>
<?php $this->widget('Notification');?>
<?php $this->content();?>
<script type="text/javascript">if(typeof movim_onload == 'function') { movim_onload(); }</script>
</body>
</html>