We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f939b8a commit ad9af83Copy full SHA for ad9af83
src/client/theme-default/components/VPFooter.vue
@@ -9,8 +9,8 @@ const { hasSidebar } = useSidebar()
9
<template>
10
<footer v-if="theme.footer" class="VPFooter" :class="{ 'has-sidebar': hasSidebar }">
11
<div class="container">
12
- <p class="message">{{ theme.footer.message }}</p>
13
- <p class="copyright">{{ theme.footer.copyright }}</p>
+ <p class="message" v-html="theme.footer.message"></p>
+ <p class="copyright" v-html="theme.footer.copyright"></p>
14
</div>
15
</footer>
16
</template>
0 commit comments