diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-02 13:16:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 13:16:53 +0100 |
commit | 4a97a04932fd634bb31d35477b01f7596a458d2e (patch) | |
tree | 095d53b5b5d455ecb339e63475b904b6020f76d3 /pages/kronika | |
parent | 65edd8389f1b175eead2287ddfe62c19108ec967 (diff) | |
parent | 34e044ef96efc8f4e6463bdc767c526f590e505c (diff) | |
download | puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.tar.gz puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.zip |
Merge pull request #20 from 19pdh/feature/drive-link
WIP Feature/drive link
Diffstat (limited to 'pages/kronika')
-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..4da7e58 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 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 + PostList, + GoogleDriveLink }, mixins: [postListParentMixin] } |