mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-10-31 18:36:31 +00:00
23 lines
667 B
Handlebars
23 lines
667 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{! Document Settings }}
|
|
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
{{! Page Meta }}
|
|
<title>{{settings.title}}</title>
|
|
<meta name="description" content="{{settings.description}}" />
|
|
|
|
{{! Styles'n'Scripts }}
|
|
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
|
|
<script type="text/javascript" src="/lib/jquery/jquery.min.js"></script>
|
|
<script type="text/javascript" src="/js/index.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
{{! This is where shit gets real }}
|
|
{{{body}}}
|
|
|
|
</body>
|
|
</html> |