Certain projects don't use the site navbar or footer, so I need an empty page template for those pages.
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+ {{- partial "head.html" . -}}
+ <body>
+ <div class="h-screen flex flex-flow flex-wrap">
+ <div id="content" class="flex-1 px-4">
+ {{- .Content }}
+ </div>
+ {{- range .Resources }}
+ <script src="{{ .Permalink }}"></script>
+ {{- end }}
+ </body>
+</html>