diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:16:54 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:16:54 +0000 |
commit | db50c4a219e0199bebd8a9fd70a87a4d3c6a123e (patch) | |
tree | 30a7dd126382030425767f00948ce3f19e3c8be4 /interfaces-status-html.lsp | |
parent | 0abf04fdfd4e0c26c6e43007d188d2b6c75c696e (diff) | |
download | acf-alpine-baselayout-db50c4a219e0199bebd8a9fd70a87a4d3c6a123e.tar.bz2 acf-alpine-baselayout-db50c4a219e0199bebd8a9fd70a87a4d3c6a123e.tar.xz |
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'interfaces-status-html.lsp')
-rw-r--r-- | interfaces-status-html.lsp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/interfaces-status-html.lsp b/interfaces-status-html.lsp index dd01099..90b0e19 100644 --- a/interfaces-status-html.lsp +++ b/interfaces-status-html.lsp @@ -1,8 +1,7 @@ <% local view = ... %> <% htmlviewfunctions = require("htmlviewfunctions") %> -<H1>SYSTEM INFO</H1> -<DL> +<h1>System Info</h1> <% htmlviewfunctions.displayitem(view.value.filename) htmlviewfunctions.displayitem(view.value.ipaddr) @@ -11,4 +10,3 @@ if view.value.iptunnel.value ~= "" then htmlviewfunctions.displayitem(view.value.iptunnel) end %> -</DL> |