Branch
Hash :
fe815ae3
Author :
Thomas de Grivel
Date :
2019-10-14T19:38:28
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
<!doctype html>
<!--[if lt IE 7 ]>
<html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>
<html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>
<html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>
<html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html lang="fr" class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>«=(h $title)»</title>
« (dolist (meta $meta)
(destructuring-bind (name content) meta »
<meta name="«=(h name)»" content="«=(h content)»"/>
« )) »
« (when $favicon »
<link rel="shortcut icon" href="«=(h $favicon)»"/>
« ) »
« (print-asset-tag "app.css") »
</head>
<body class="«=(h $controller)» «=(h $controller)»--«=(h $action)»">
<div id="messages" class="container">
« (dolist (flash $flash) »
« (destructuring-bind (level message) flash »
<div class="alert alert-«=(h level)»">
«=(h message)»
</div>
« )) »
</div>
<div id="body" class="container">
« (when $template (print-template $template)) »
</div>
« (print-asset-tag "app.js") »
</body>
</html>