server/onyx/tpl/bootstrap/layout.tpl

49 lines
1.7 KiB
Smarty
Raw Normal View History

2013-10-09 15:51:12 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2014-11-05 16:46:18 +00:00
<title>{block name=title}Challenge FIC2015{/block}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="{$SALT_CDN}/css/bootstrap.min.css" type="text/css" rel="stylesheet" media="screen">
<link href="{$SALT_CDN}/css/bootstrap-theme.min.css" type="text/css" rel="stylesheet" media="screen">
2013-10-09 15:51:12 +00:00
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
2014-11-20 10:31:55 +00:00
<script src="{$SALT_CDN}/assets/js/html5shiv.js"></script>
<script src="{$SALT_CDN}/assets/js/respond.min.js"></script>
2013-10-09 15:51:12 +00:00
<![endif]-->
2013-12-11 11:58:17 +00:00
<link rel="shortcut icon" type="image/x-icon" href="{$SALT_CDN}/favicon.ico">
2013-10-09 15:51:12 +00:00
<meta name="author" content="EPITA Laboratoire SRS">
<meta name="robots" content="all">
<meta name="language" content="{$smarty.const.LANG}">
<meta http-equiv="Content-Language" content="{$smarty.const.LANG}">
{block name=head}{/block}
</head>
2013-10-10 01:28:02 +00:00
<body>
{block name=body}
2013-10-09 15:51:12 +00:00
{if $ERRmessage}
2013-10-10 03:13:45 +00:00
<div class="alert alert-dismissable alert-{$ERRcolor}">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<span class="glyphicon glyphicon-warning-sign"></span> {$ERRmessage}
2013-10-09 15:51:12 +00:00
</div>
{/if}
{block name=content}{/block}
2013-10-10 01:28:02 +00:00
{/block}
2013-10-09 15:51:12 +00:00
2014-01-20 08:58:29 +00:00
<!--
<div class="container">
<hr>
<footer>
2014-11-05 16:46:18 +00:00
<p>&copy; <a href="http://www.forum-fic.com/">FIC</a> 2015
2014-01-20 08:58:29 +00:00
&copy; <a href="http://www.epita.fr/">EPITA</a></p>
</footer>
</div>
-->
2013-12-11 11:58:17 +00:00
<script src="{$SALT_CDN}/js/jquery.min.js"></script>
2014-08-27 10:26:13 +00:00
<script src="{$SALT_CDN}/js/bootstrap.min.js"></script>
2013-10-10 01:28:02 +00:00
{block name=end}{/block}
2013-10-09 15:51:12 +00:00
</body>
</html>