diff options
Diffstat (limited to 'pages/kronika')
-rw-r--r-- | pages/kronika/_year/_month/_day/_title/index.vue | 16 | ||||
-rw-r--r-- | pages/kronika/index.vue | 44 |
2 files changed, 18 insertions, 42 deletions
diff --git a/pages/kronika/_year/_month/_day/_title/index.vue b/pages/kronika/_year/_month/_day/_title/index.vue index fa9a9ab..9fab1d0 100644 --- a/pages/kronika/_year/_month/_day/_title/index.vue +++ b/pages/kronika/_year/_month/_day/_title/index.vue @@ -4,9 +4,9 @@ <h1>404</h1> <p>Nie znaleziono wpisu</p> </div> - <div v-else class="article"> + <section v-else class="article"> <article class="content" v-html="content"></article> - </div> + </section> </div> </template> @@ -71,6 +71,12 @@ export default { width: 100%; border-radius: 5px; } + +.article h1 { + font-size: 1.5em; + letter-spacing: 0; +} + @media (max-width: 720px) { .article { padding: 60px 20px; @@ -78,5 +84,9 @@ export default { .article p { text-align: justify; } + .article h1 { + font-size: 1.7em; + font-weight: 700; + } } -</style> \ No newline at end of file +</style> diff --git a/pages/kronika/index.vue b/pages/kronika/index.vue index 4a89a48..8142a6c 100644 --- a/pages/kronika/index.vue +++ b/pages/kronika/index.vue @@ -1,52 +1,18 @@ <template> <div style="padding-top: 20px"> <h2>Ostatnie wpisy</h2> - <div class="post-list"> - <chronicle-post - v-for="(post, index) in posts" - :key="index" - :route="post.route" - :title="post.content.meta.title" - :description="post.content.description" - /> - </div> + <post-list :posts="posts" /> </div> </template> <script> -import ChroniclePost from '~/components/ChroniclePost' -import k from '~/api' +import PostList from '~/components/Posts/PostList' +import postListParentMixin from '~/components/Posts/PostList/parentMixin' export default { components: { - ChroniclePost + PostList }, - async asyncData() { - return { - posts: k.getPosts() - } - }, - mounted() { - this.getPosts() - }, - methods: { - getPosts() { - if (this.posts.length < 1) { - this.$axios - .get(`${window.location.origin}/api/posts.json`) - .then(r => (this.posts = r.data)) - } - console.log(this.posts) - } - } + mixins: [postListParentMixin] } </script> - -<style scoped> -.post-list { - display: flex; - flex-wrap: wrap; - justify-content: center; - max-width: 900px; -} -</style> \ No newline at end of file |