1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-01 06:05:06 +03:00
kangana/application/templates/empty.mustache

34 lines
854 B
Plaintext
Raw Normal View History

2014-01-28 09:50:18 +02:00
<!doctype html>
<html lang="ru">
<head>
<title>{{title}}</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href='{{favicon}}' rel='shortcut icon' type='image/x-icon'/>
{{{stylesheet}}}
</head>
<body>
<div class="container">
<div class = "main_content">
2014-02-18 06:06:06 +02:00
<h3>{{title}}</h3>
2014-01-28 09:50:18 +02:00
{{#flashes}}
{{#info}}
<div class="alert alert-info">{{.}}</div>
{{/info}}
{{#error}}
<div class="alert alert-danger">{{.}}</div>
{{/error}}
{{#warning}}
<div class="alert alert-warning">{{.}}</div>
{{/warning}}
{{#success}}
<div class="alert alert-success">{{.}}</div>
{{/success}}
{{/flashes}}
{{>content}}
</div>
</div>
{{{scripts}}}
</body>
</html>