aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/web/views/layout.erb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 21:35:44 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 21:35:44 +0100
commitd072b503f5ccc5d08f279aac463d37837cbbb576 (patch)
treef8f1265ea274ad1d4a32a8272da68187813231e6 /interfaces/http/web/views/layout.erb
parent0882804d708fe5a1732c6b9faa7d9a2f369f5257 (diff)
downloadcomb-d072b503f5ccc5d08f279aac463d37837cbbb576.tar.gz
Add 'post' and 'not_found' views
Diffstat (limited to 'interfaces/http/web/views/layout.erb')
-rw-r--r--interfaces/http/web/views/layout.erb11
1 files changed, 11 insertions, 0 deletions
diff --git a/interfaces/http/web/views/layout.erb b/interfaces/http/web/views/layout.erb
new file mode 100644
index 0000000..2593992
--- /dev/null
+++ b/interfaces/http/web/views/layout.erb
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8" />
+ <title><%= @title %></title>
+</head>
+<body>
+ <h1 id="title"><%= $config.title %></h1>
+ <%= yield %>
+</body>
+</html>