From 611c93f1d0a314b2b866d64cef6a103218e99f98 Mon Sep 17 00:00:00 2001 From: Tommy Vedvik Date: Thu, 28 Feb 2019 20:01:06 +0100 Subject: [PATCH] use same frontmatter as Dev.to --- content/posts/a-post-with-a-poster.md | 7 +- content/posts/markdown-test-file.md | 4 +- content/posts/say-hello-to-gridsome.md | 4 +- src/assets/style/_base.scss | 5 + src/components/PostCard.vue | 4 +- src/pages/Index.vue | 4 +- src/templates/Post.vue | 7 +- src/templates/Tag.vue | 3 +- yarn.lock | 378 +++++++++++++------------ 9 files changed, 218 insertions(+), 198 deletions(-) diff --git a/content/posts/a-post-with-a-poster.md b/content/posts/a-post-with-a-poster.md index fa316e3..3cb5812 100644 --- a/content/posts/a-post-with-a-poster.md +++ b/content/posts/a-post-with-a-poster.md @@ -1,9 +1,12 @@ --- title: A post with a poster date: 2019-01-07 +published: true tags: ['Markdown'] -poster: ./images/alexandr-podvalny-220262-unsplash.jpg -excerpt: "Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions." +series: false +cover_image: ./images/alexandr-podvalny-220262-unsplash.jpg +canonical_url: false +description: "Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions." --- ## Overview diff --git a/content/posts/markdown-test-file.md b/content/posts/markdown-test-file.md index 4821423..bd515d7 100644 --- a/content/posts/markdown-test-file.md +++ b/content/posts/markdown-test-file.md @@ -1,8 +1,10 @@ --- title: Markdown test files date: 2019-02-06 +published: true tags: ['Markdown'] -excerpt: "Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions." +canonical_url: false +description: "Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions." --- ## Overview diff --git a/content/posts/say-hello-to-gridsome.md b/content/posts/say-hello-to-gridsome.md index c50039c..c842e50 100644 --- a/content/posts/say-hello-to-gridsome.md +++ b/content/posts/say-hello-to-gridsome.md @@ -2,7 +2,9 @@ title: Say hello to Gridsome 🎉 date: 2019-02-07 tags: ['Markdown', 'Releases'] -excerpt: "A new static site generator baby is born. It's highly inspired by Gatsby.js (React based) but built on top of Vue.js. We have been working on it for a year and will have a beta ready soon. You can expect this baby to grow up fast!" +canonical_url: false +description: "A new static site generator baby is born. It's highly inspired by Gatsby.js (React based) but built on top of Vue.js. We have been working on it for a year and will have a beta ready soon. You can expect this baby to grow up fast!" + --- We think **Gridsome** is a missing piece to the Vue.js ecosystem. What Gatsby.js does for React.js is a game changer in how we build websites. React.js is excellent, but we think Vue.js is more approachable for most web designers and devs getting started with JAMstack. Gridsome is the Vue.js alternative to Gatsby. diff --git a/src/assets/style/_base.scss b/src/assets/style/_base.scss index 9d2fff9..b506606 100644 --- a/src/assets/style/_base.scss +++ b/src/assets/style/_base.scss @@ -30,4 +30,9 @@ img { h1,h2,h3,h4,h5,h6 { transition: color .6s; color: var(--title-color); +} + + +li { + list-style: disc; } \ No newline at end of file diff --git a/src/components/PostCard.vue b/src/components/PostCard.vue index 05b2124..e37472c 100644 --- a/src/components/PostCard.vue +++ b/src/components/PostCard.vue @@ -1,11 +1,11 @@