diff --git a/template/components/content_table.go b/template/components/content_table.go deleted file mode 100644 index 66c7e1f..0000000 --- a/template/components/content_table.go +++ /dev/null @@ -1,17 +0,0 @@ -package components - -type ContentTable struct { - ID string - AllTH []ContentTableTH - AllTD [][]ContentTableTD -} - -type ContentTableTH struct { - ID string - Value string -} - -type ContentTableTD struct { - ID string - Value string -} diff --git a/template/components/content_table.html b/template/components/content_table.html deleted file mode 100644 index 68e34f6..0000000 --- a/template/components/content_table.html +++ /dev/null @@ -1,12 +0,0 @@ -{{define "content_table"}} - - - - {{range $index, $col := .AllTH}}{{end}} - - - -{{range .AllTD}}{{range .}}{{end}}{{end}} - -
{{ $col.Value }}
{{ .Value }}
-{{end}} \ No newline at end of file