diff options
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/partials/item.html | 3 | ||||
-rw-r--r-- | web/templates/partials/item_list.html | 7 | ||||
-rw-r--r-- | web/templates/views/invoice.html | 15 |
3 files changed, 0 insertions, 25 deletions
diff --git a/web/templates/partials/item.html b/web/templates/partials/item.html deleted file mode 100644 index 04eabba..0000000 --- a/web/templates/partials/item.html +++ /dev/null @@ -1,3 +0,0 @@ -{{ define "partials/item.html" }} -<div>{{ .Name }}</div> -{{ end }} diff --git a/web/templates/partials/item_list.html b/web/templates/partials/item_list.html deleted file mode 100644 index 6fdd1f9..0000000 --- a/web/templates/partials/item_list.html +++ /dev/null @@ -1,7 +0,0 @@ -{{ define "partials/item_list.html" }} -<div class="items"> - {{ range . }} - {{ template "partials/item.html" .}} - {{ end }} -</div> -{{ end }} diff --git a/web/templates/views/invoice.html b/web/templates/views/invoice.html deleted file mode 100644 index c8a3c70..0000000 --- a/web/templates/views/invoice.html +++ /dev/null @@ -1,15 +0,0 @@ -<!doctype html> -<html class="no-js" lang=""> - <head> - <meta charset="utf-8"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - <title>OpenBills Testing</title> - <meta name="description" content=""> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <link rel="apple-touch-icon" href="/apple-touch-icon.png"> - </head> - <body> - {{ template "partials/item_list.html" .Invoice.Items }} - </body> -</html> |