feat: show at least n posts and configure last text

This commit is contained in:
2026-04-26 22:02:41 +02:00
parent 65f4dd1ac5
commit 99867aa03e
12 changed files with 45 additions and 32 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { BASE_URL, TITLE, RSS_LINK } from '@/lib/meta'
import { BASE_URL, TITLE, RSS_LINK } from '@lib/config'
</script>
<template>
+4 -3
View File
@@ -1,11 +1,12 @@
<script setup lang="ts">
import { REPOSITORY, NAME, VERSION, TITLE, COPYRIGHT } from '@/lib/meta'
import { stripHTML } from '@/lib/strings';
import { REPOSITORY, NAME, VERSION, TITLE, COPYRIGHT } from '@lib/config'
import { stripHTML } from '@lib/strings'
</script>
<template>
<footer>
{{ stripHTML(TITLE) }} &copy; {{ new Date().getFullYear() }}, <span v-html="COPYRIGHT"></span> | Made with
{{ stripHTML(TITLE) }} &copy; {{ new Date().getFullYear() }}, <span v-html="COPYRIGHT"></span> |
Made with
<a :href="REPOSITORY">{{ NAME }} {{ VERSION }}</a>
</footer>
</template>