suite42/templates/index.html

37 lines
1.1 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<title>{{title}} - {{page.metadata.title}}</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="style.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<h1>{{page.metadata.title}}</h1>
<h3>{{{page.metadata.subtitle}}}</h3>
<p><span class="fa fa-vk">&nbsp;</span> <a href="https://vk.com/kem_suite">Группа вКонтакте</a></p>
</div>
<div class="row">
{{{page.html}}}
</div>
<div class="footer">&copy; 2014</div>
</div>
<script>
WebFontConfig = {
google: { families: [ 'PT+Sans:400,700:latin,cyrillic' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</body>
</html>