about summary refs log tree commit diff
path: root/pages
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-03 19:14:44 +0100
committerGitHub <noreply@github.com>2020-01-03 19:14:44 +0100
commit6a87f4d381bb43bea3a2b64ea930d4f46783e22c (patch)
tree7e14c6c0ee06edcbc1dd3084d5801ab69be1ee28 /pages
parentd81efb1e043180885bfb6ea9eac173a86fea6aad (diff)
parent1b74216fc4afa740991dcc9986eb6843c5b07a59 (diff)
downloadpuszcza-6a87f4d381bb43bea3a2b64ea930d4f46783e22c.tar.gz
puszcza-6a87f4d381bb43bea3a2b64ea930d4f46783e22c.zip
Merge pull request #22 from 19pdh/develop
Google drive link
Diffstat (limited to 'pages')
-rw-r--r--pages/kronika/index.vue11
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&#8209;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]
 }