浏览代码

populated template file with some generic structure

Casey DeLorme 10 年之前
父节点
当前提交
69a8469246
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. 26 0
      template.tmpl

+ 26 - 0
template.tmpl

@@ -0,0 +1,26 @@
+<!doctype html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>Casey DeLorme's Portfolio / caseydelorme.com</title>
+    <link rel="stylesheet" type="text/css" href="{{$css}}#{{$gitversion}}">
+</head>
+    <body>
+
+        <header>
+            <h1>Casey Delorme</h1>
+        </header>
+
+        <div class="content group">
+            {{$content}}
+        </div>
+
+        <footer>
+            Copyright?
+            <div class="scripts">
+                <script src="{{$javascript}}#{{$gitversion}}" async></script>
+            </div>
+        </footer>
+    </body>
+
+</html>