From f334c93c0364d14a2b55641b155ad58f715a4b39 Mon Sep 17 00:00:00 2001
From: horus_arch
Date: Thu, 19 Mar 2015 13:39:37 +0100
Subject: Rewriting from scratch.
---
app/views/App/DomainRegister.html | 50 -------------------------
app/views/App/Index.html | 13 -------
app/views/App/Index.html.bak | 23 ------------
app/views/App/Register.html | 78 ---------------------------------------
app/views/debug.html | 64 --------------------------------
app/views/errors/404.html | 20 ----------
app/views/errors/500.html | 16 --------
app/views/flash.html | 18 ---------
app/views/footer.html | 19 ----------
app/views/header.html | 19 ----------
app/views/navbar.html | 23 ------------
11 files changed, 343 deletions(-)
delete mode 100644 app/views/App/DomainRegister.html
delete mode 100644 app/views/App/Index.html
delete mode 100644 app/views/App/Index.html.bak
delete mode 100644 app/views/App/Register.html
delete mode 100644 app/views/debug.html
delete mode 100644 app/views/errors/404.html
delete mode 100644 app/views/errors/500.html
delete mode 100644 app/views/flash.html
delete mode 100644 app/views/footer.html
delete mode 100644 app/views/header.html
delete mode 100644 app/views/navbar.html
(limited to 'app/views')
diff --git a/app/views/App/DomainRegister.html b/app/views/App/DomainRegister.html
deleted file mode 100644
index 9c8683c..0000000
--- a/app/views/App/DomainRegister.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{{set . "title" "Register"}}
-{{template "header.html" .}}
-{{template "navbar.html" .}}
-
-
-
-
-
-
-
Please note: We haven't started yet! This is just a demo page.
-
-
-
-
-
-
-
-
-{{template "footer.html" .}}
diff --git a/app/views/App/Index.html b/app/views/App/Index.html
deleted file mode 100644
index cf36a51..0000000
--- a/app/views/App/Index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{{set . "title" "Home"}}
-{{template "header.html" .}}
-{{template "navbar.html" .}}
-
-
-
-
-{{template "footer.html" .}}
diff --git a/app/views/App/Index.html.bak b/app/views/App/Index.html.bak
deleted file mode 100644
index deb2304..0000000
--- a/app/views/App/Index.html.bak
+++ /dev/null
@@ -1,23 +0,0 @@
-{{set . "title" "Home"}}
-{{template "header.html" .}}
-
-
-
-
-
-
- {{template "flash.html" .}}
-
-
-
-
-{{template "footer.html" .}}
diff --git a/app/views/App/Register.html b/app/views/App/Register.html
deleted file mode 100644
index e950804..0000000
--- a/app/views/App/Register.html
+++ /dev/null
@@ -1,78 +0,0 @@
-{{set . "title" "Register"}}
-{{template "header.html" .}}
-{{template "navbar.html" .}}
-
-
-
-
-
-
-
Please note: We haven't started yet! This is just a demo page.
-
-
-
-
-
-
-
-
-{{template "footer.html" .}}
diff --git a/app/views/debug.html b/app/views/debug.html
deleted file mode 100644
index f3975b7..0000000
--- a/app/views/debug.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
diff --git a/app/views/errors/404.html b/app/views/errors/404.html
deleted file mode 100644
index ebdfe10..0000000
--- a/app/views/errors/404.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- Not found
-
-
-{{if eq .RunMode "dev"}}
-{{template "errors/404-dev.html" .}}
-{{else}}
- {{with .Error}}
-
- {{.Title}}
-
-
- {{.Description}}
-
- {{end}}
-{{end}}
-
-
diff --git a/app/views/errors/500.html b/app/views/errors/500.html
deleted file mode 100644
index 0cef4de..0000000
--- a/app/views/errors/500.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- Application error
-
-
- {{if eq .RunMode "dev"}}
- {{template "errors/500-dev.html" .}}
- {{else}}
- Oops, an error occured
-
- This exception has been logged.
-
- {{end}}
-
-
diff --git a/app/views/flash.html b/app/views/flash.html
deleted file mode 100644
index 9c9ade9..0000000
--- a/app/views/flash.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{{if .flash.success}}
-
- {{.flash.success}}
-
-{{end}}
-
-{{if or .errors .flash.error}}
-
- {{if .flash.error}}
- {{.flash.error}}
- {{end}}
-
- {{range .errors}}
- - {{.}}
- {{end}}
-
-
-{{end}}
diff --git a/app/views/footer.html b/app/views/footer.html
deleted file mode 100644
index 1b06355..0000000
--- a/app/views/footer.html
+++ /dev/null
@@ -1,19 +0,0 @@
- {{if eq .RunMode "dev"}}
- {{template "debug.html" .}}
- {{end}}
- {{range .moreScripts}}
-
- {{end}}
-
-
-
-