aboutsummaryrefslogtreecommitdiff
path: root/templates/parts/_layout.tmpl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/parts/_layout.tmpl30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/parts/_layout.tmpl b/templates/parts/_layout.tmpl
new file mode 100644
index 0000000..4098a30
--- /dev/null
+++ b/templates/parts/_layout.tmpl
@@ -0,0 +1,30 @@
+{{ define "base" }}
+<!DOCTYPE html>
+<html lang="en">
+ <!-- Basic Page Needs
+ –––––––––––––––––––––––––––––––––––––––––––––––––– -->
+ <meta charset="utf-8">
+ <title>iserv - an image site</title>
+ <meta name="description" content="">
+ <meta name="author" content="">
+
+ <!-- Mobile Specific Metas
+ –––––––––––––––––––––––––––––––––––––––––––––––––– -->
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <!-- FONT
+ <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
+
+ –––––––––––––––––––––––––––––––––––––––––––––––––– -->
+ <!-- CSS
+ <link rel="stylesheet" href="css/normalize.css">
+ –––––––––––––––––––––––––––––––––––––––––––––––––– -->
+ <link rel="stylesheet" href="/static/css/style.css">
+
+ <!-- Favicon
+ –––––––––––––––––––––––––––––––––––––––––––––––––– -->
+ <!-- <link rel="icon" type="image/png" href="images/favicon.png"> -->
+
+</head>
+{{ template "content" . }}
+{{ end }}