punchcard-cms
Version:
Node-based content management system
32 lines (27 loc) • 605 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{pageTitle}}</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
{% block header %}
{% include "_header.html" %}
{% endblock %}
<main class="wrapper">
{% block main %}
<div><h1>Original MAIN</h1></div>
{% endblock %}
</main>
{% block footer %}
{% include "_footer.html" %}
{% endblock %}
<script src="/js/app.js"></script>
{% block pageFoot %}
<script type="text/javascript">
// this is where the sitewide js goes
</script>
{% endblock %}
</body>
</html>