From 6f45cc287112030387f33169c762ee9448c0c65c Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sun, 17 Apr 2016 18:20:39 -0700 Subject: Splitting out header and footer templates --- util/tmpl/defs.html | 21 --------------------- util/tmpl/footer.html | 3 +++ util/tmpl/header.html | 11 +++++++++++ util/tmpl/term-list.html | 7 +++++++ 4 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 util/tmpl/defs.html create mode 100644 util/tmpl/footer.html create mode 100644 util/tmpl/header.html create mode 100644 util/tmpl/term-list.html (limited to 'util/tmpl') diff --git a/util/tmpl/defs.html b/util/tmpl/defs.html deleted file mode 100644 index 3f37d8bd..00000000 --- a/util/tmpl/defs.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - -
- -
- - {{#each defs}} -
- {{> term.html}} -
- {{/each}} - - - - diff --git a/util/tmpl/footer.html b/util/tmpl/footer.html new file mode 100644 index 00000000..7c2cac6b --- /dev/null +++ b/util/tmpl/footer.html @@ -0,0 +1,3 @@ + + + diff --git a/util/tmpl/header.html b/util/tmpl/header.html new file mode 100644 index 00000000..b7577dd5 --- /dev/null +++ b/util/tmpl/header.html @@ -0,0 +1,11 @@ + + + + + + + + +
+ +
diff --git a/util/tmpl/term-list.html b/util/tmpl/term-list.html new file mode 100644 index 00000000..9e55a80e --- /dev/null +++ b/util/tmpl/term-list.html @@ -0,0 +1,7 @@ +{{> header.html}} +{{#each defs}} +
+ {{> term.html}} +
+{{/each}} +{{> footer.html}} -- cgit v1.2.3