13 lines
423 B
Vue
13 lines
423 B
Vue
<template>
|
|
<footer class="mb-8 mt-4 text-center text-xs dark:text-gray-100">
|
|
<div class="mb-2">
|
|
{{ $t('Monica. All rights reserved. 2017 — :date.', { date: new Date().getFullYear().toString() }) }}
|
|
{{ $t('Made from all over the world. We ❤️ you.') }}
|
|
</div>
|
|
<div>
|
|
{{ $t('This site is open source.') }}
|
|
<span v-html="$page.props.footer"></span>
|
|
</div>
|
|
</footer>
|
|
</template>
|