Skip to content

Commit

Permalink
Wrote my first gridsome post
Browse files Browse the repository at this point in the history
updated gridsome.config.js
  • Loading branch information
ChristianPavilonis committed Dec 4, 2019
1 parent 2724969 commit c23f840
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 12 deletions.
19 changes: 19 additions & 0 deletions content/posts/2019-12-04-my-first-gridsome-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: "My First Gridsome Post"
slug: my-first-gridsome-post
description: "This is a description of the post"
date: 2019-12-04 13:59:57
author: christian
tags:
- font-end
cover: https://images.unsplash.com/photo-1473554198449-fd330ccd766e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1352&q=80
fullscreen: true
---

Hello this is my first post on [amishdev.com](https://amishdev.com)

this is written in mark down

## this is an h2

__italics__
24 changes: 12 additions & 12 deletions gridsome.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ class TailwindExtractor {
}

module.exports = {
siteName: 'A blog starter for Gridsome',
siteDescription: "Bleda is a blog starter kit for Gridsome, the Vue.js static site generator. It's inspired by Attila for Ghost, and styled with Tailwind CSS.",
siteUrl: 'https://gridsome-starter-bleda.netlify.com',
siteName: 'amishDev',
siteDescription: "A site about crafting software.",
siteUrl: 'https://amishdev.com',
titleTemplate: `%s | Bleda`,
icon: 'src/favicon.png',

Expand Down Expand Up @@ -41,12 +41,12 @@ module.exports = {
},
},
},
{
use: '@gridsome/plugin-google-analytics',
options: {
id: 'UA-135446199-1',
},
},
// {
// use: '@gridsome/plugin-google-analytics',
// options: {
// id: 'UA-135446199-1',
// },
// },
{
use: '@gridsome/plugin-sitemap',
options: {
Expand All @@ -59,13 +59,13 @@ module.exports = {
contentTypeName: 'Post',
feedOptions: {
title: 'Bleda, a Gridsome blog starter',
feed_url: 'https://gridsome-starter-bleda.netlify.com/feed.xml',
site_url: 'https://gridsome-starter-bleda.netlify.com',
feed_url: 'https://amishdev.com/feed.xml',
site_url: 'https://amishdev.com',
},
feedItemOptions: node => ({
title: node.title,
description: node.description,
url: 'https://gridsome-starter-bleda.netlify.com/' + node.slug,
url: 'https://amishdev.com/' + node.slug,
author: node.author,
date: node.date,
}),
Expand Down

0 comments on commit c23f840

Please sign in to comment.