Skip to content

Commit

Permalink
feat: allow html in footer (#1034)
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Jul 21, 2022
1 parent f939b8a commit ad9af83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/theme-default/components/VPFooter.vue
Expand Up @@ -9,8 +9,8 @@ const { hasSidebar } = useSidebar()
<template>
<footer v-if="theme.footer" class="VPFooter" :class="{ 'has-sidebar': hasSidebar }">
<div class="container">
<p class="message">{{ theme.footer.message }}</p>
<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>
</div>
</footer>
</template>
Expand Down

0 comments on commit ad9af83

Please sign in to comment.