blob: 4da7e58e36383c14ec5e9d5ad70f479e8febd0fc (
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
|
<template>
<div style="padding-top: 20px; max-width: 900px">
<h2>Ostatnie wpisy</h2>
<post-list :posts="posts" />
<google-drive-link
text="Zobacz również e‑książkę rozkazów"
link="https://drive.google.com/drive/folders/1LWH4yYXpaa8kapBa2UAZTKnAAgXOHQYo?usp=sharing"
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>
|