diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-30 19:11:52 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-30 19:11:52 +0100 |
commit | 43d71a71cce9354f1d7a6ca84e3b583b9fbf5001 (patch) | |
tree | ec1397eb3364fafe9b26cbd7464ebdae84b666ba /pages/kronika/index.vue | |
parent | 8afae8ea960b7162df851ad5946f4bbebd729ff3 (diff) | |
download | puszcza-43d71a71cce9354f1d7a6ca84e3b583b9fbf5001.tar.gz puszcza-43d71a71cce9354f1d7a6ca84e3b583b9fbf5001.zip |
Add to page
Diffstat (limited to 'pages/kronika/index.vue')
-rw-r--r-- | pages/kronika/index.vue | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pages/kronika/index.vue b/pages/kronika/index.vue index 8142a6c..dab61ba 100644 --- a/pages/kronika/index.vue +++ b/pages/kronika/index.vue @@ -1,17 +1,24 @@ <template> - <div style="padding-top: 20px"> + <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 10px" + /> </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 + PostList, + GoogleDriveLink }, mixins: [postListParentMixin] } |