hidrocor

commit f983a07a41cd7564bca10c6ca99765f41b8d6d5f

Author: Pedro Lucas Porcellis <porcellis@eletrotupi.com>

layout: add a decent base template

 templates/layout.html | 32 ++++++++++++++++++++++++++++++++


diff --git a/templates/layout.html b/templates/layout.html
new file mode 100644
index 0000000000000000000000000000000000000000..3086297aaa1affec80b2acf6fdcc05a775f74689
--- /dev/null
+++ b/templates/layout.html
@@ -0,0 +1,32 @@
+<!doctype html>
+<html>
+  <head>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <title>{{ .Title }}</title>
+    <style>
+      body {
+        text-align: center;
+        max-width: 600px;
+        margin: 0 auto;
+        padding: 0 1rem;
+        font-family: sans-serif;
+      }
+
+      h1 {
+        font-size: 2.25rem;
+        line-height: 2.5rem;
+      }
+
+      article {
+        text-align: left;
+      }
+    </style>
+  </head>
+
+  <body>
+    <article>
+      {{ .Content }}
+    </article>
+  </body>
+</html>