30 lines
675 B
Vue
30 lines
675 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader/></template>
|
|
|
|
<MkSpacer :contentMax="500">
|
|
<div class="_gaps">
|
|
<MkAd v-for="ad in instance.ads" :key="ad.id" :specify="ad"/>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, watch } from 'vue';
|
|
import * as os from '@/os.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { instance } from '@/instance.js';
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.ads,
|
|
icon: 'ti ti-ad',
|
|
});
|
|
</script>
|
|
|