From 00005335403f0f2a4081a441866bec9fa9580ed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= <i.am.the.tablet@proton.me> Date: Thu, 5 Oct 2023 02:00:47 -0400 Subject: [PATCH] fix(components): fix footer it didn't have a `<template>` tag? --- components/layouts/footer.vue | 40 ++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/components/layouts/footer.vue b/components/layouts/footer.vue index 43463f4..88d4590 100644 --- a/components/layouts/footer.vue +++ b/components/layouts/footer.vue @@ -1,20 +1,26 @@ <script lang="ts" setup></script> -<div> +<template> + <div> <p> - © Rockfic.com, since 2004. Rockfic.com is in no way associated with any - band listed on this website. Rockfic.com is entertainment. All stories - contained on this site are fictional, which means that while the - characters may be loosely based on the public personas of real people, - the stories themselves are completely ungrounded from reality and are in - no way meant to reflect the private lives, actual practices, or - activities of any persons named. Rockfic.com will remove a work of - fiction if an individual named within requests its removal.<br> - For site problems and/or bugs, contact <a style="font-weight: bold" href="mailto:bugs@rockfic.com">bugs@rockfic.com</a>.<br> - For everything else, contact <a href="mailto:admin@rockfic.com">admin@rockfic.com</a>. - </p> - <b>Copyright Notice</b><br> - All content on this site is copyright of its respective author. You - may not, except with our express written permission, distribute or - commercially exploit the content. Nor may you transmit it or store it in - any other website or other form of electronic retrieval system. + © Rockfic.com, since 2004. Rockfic.com is in no way associated with any + band listed on this website. Rockfic.com is entertainment. All stories + contained on this site are fictional, which means that while the + characters may be loosely based on the public personas of real people, the + stories themselves are completely ungrounded from reality and are in no + way meant to reflect the private lives, actual practices, or activities of + any persons named. Rockfic.com will remove a work of fiction if an + individual named within requests its removal.<br /> + For site problems and/or bugs, contact + <a style="font-weight: bold" href="mailto:bugs@rockfic.com" + >bugs@rockfic.com</a + >.<br /> + For everything else, contact + <a href="mailto:admin@rockfic.com">admin@rockfic.com</a>. + </p> + <b>Copyright Notice</b><br /> + All content on this site is copyright of its respective author. You may not, + except with our express written permission, distribute or commercially + exploit the content. Nor may you transmit it or store it in any other + website or other form of electronic retrieval system. </div> +</template>