summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/nuldoc-src/components/global_footer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vhosts/blog/nuldoc-src/components/global_footer.ts')
-rw-r--r--vhosts/blog/nuldoc-src/components/global_footer.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/vhosts/blog/nuldoc-src/components/global_footer.ts b/vhosts/blog/nuldoc-src/components/global_footer.ts
index 4c9d2457..7499fd8a 100644
--- a/vhosts/blog/nuldoc-src/components/global_footer.ts
+++ b/vhosts/blog/nuldoc-src/components/global_footer.ts
@@ -1,12 +1,10 @@
import { Config } from "../config.ts";
-import { el, Element, text } from "../dom.ts";
+import { el, Element } from "../dom.ts";
export function globalFooter(config: Config): Element {
return el(
"footer",
[["class", "footer"]],
- text(
- `© ${config.blog.siteCopyrightYear} ${config.blog.author}`,
- ),
+ `© ${config.blog.siteCopyrightYear} ${config.blog.author}`,
);
}