blob: cf3d79588115617300db517a63592ea3b38f8b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<template>
<div style="padding-top: 20px; max-width: 900px">
<h2>Ostatnie wpisy</h2>
<a href="rss.xml">
<img alt="RSS" style="height: 1em" src="/assets/social/rss.svg">
RSS
</a>
<post-list :posts="posts" :next="next" :max="8" />
<google-drive-link
text="Zobacz również e‑książkę rozkazów"
link="https://zhr.niedzwiedzinski.cyou/rozkazy/"
style="margin: 60px 30px"
/>
</div>
</template>
<script>
import PostList from '~/components/Posts/PostList'
import postListParentMixin from '~/components/Posts/PostList/parentMixin'
import GoogleDriveLink from '~/components/GoogleDriveLink'
export default {
components: {
PostList,
GoogleDriveLink
},
mixins: [postListParentMixin]
}
</script>
|