2022-11-15 14:50:41 +01:00
|
|
|
<script setup lang="ts">
|
2022-11-26 16:58:30 +01:00
|
|
|
const paginator = useMasto().timelines.getPublicIterable()
|
2022-11-25 12:48:48 +01:00
|
|
|
|
|
|
|
useHead({
|
2022-11-26 13:58:10 +01:00
|
|
|
title: 'Federated',
|
2022-11-25 12:48:48 +01:00
|
|
|
})
|
2022-11-15 14:50:41 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-26 13:58:10 +01:00
|
|
|
<span text-lg font-bold>Federated Timeline</span>
|
2022-11-15 14:50:41 +01:00
|
|
|
</template>
|
2022-11-26 13:58:10 +01:00
|
|
|
|
2022-11-15 14:50:41 +01:00
|
|
|
<slot>
|
2022-11-17 08:35:42 +01:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 14:50:41 +01:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|