<!DOCTYPE html>
<html lang=en>
<head>
{{ template "html/_head.html" }}
<title>Skipper CMS | {{(.Content.MustValueByName "name").Value}}</title>
</head>
<body class='page bg-light'>
<style>{{ template "css/main.css" }}</style>
<main>
{{ template "html/_header.html" $ }}
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">{{(.Content.MustValueByName "name").Value}}</h1>
</div>
<div class="container">
<div class="row">
<div class="col-12 offset-0 col-lg-8 offset-lg-2">
<article>
{{(.Content.MustValueByName "desc").Value | html}}
</article>
</div>
</div>
</div>
{{ template "html/_footer.html" $ }}
</main>
{{ template "html/_scripts.html" }}
</body>
</html>