Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create the blog page #16

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions content/blogpost/first-blogpost.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: First blogpost
image: https://res.cloudinary.com/dk5dlrnv1/image/upload/v1613476353/events/bi-business-intelligence-ts-100646689-large_tgyi2z_bdevrp.jpg
date: 2021-02-12T10:58:56.375Z
slug: first-blogopst
description: Webinar on “Business Intelligence in the Cloud with Microsoft PowerBI”| Παρασκευή 12/2/2021
language: el
---
Webinar on “Business Intelligence in the Cloud with Microsoft PowerBI”| Παρασκευή 12/2/2021
Στα πλαίσια της πρωτοβουλίας "IEEEIHUThess goes online!", το Φοιτητικό Παράρτημα IEEE Student Branch - International Hellenic University (Thessaloniki), το Communications, Cybersecurity and Internet of Things (CCIoT) Research Group και το Communication Chapter του IEEE Greece Section συνδιοργανώνουν μια πολύ ενδιαφέρουσα εκδήλωση σε συνεργασία με την εταιρία SP Consulting GmbH (Germany)!

💻 Θέμα: “Business Intelligence in the Cloud with Microsoft PowerBI”

💁🏻‍♂‍ Ποιος: Andreas Hubner (Managing Director) and Stefanos Tragalos (IT Project Manager)

Στο τέλος της εκδήλωσης θα ακολουθήσει συζήτηση σχετικά με τις δυνατότητες απασχόλησης στην Γερμανία και το εξωτερικό!
15 changes: 15 additions & 0 deletions gridsome.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,26 @@ module.exports = {
path: "./content/gallery/**/*.md",
},
},
{
use: "@gridsome/source-filesystem",
options: {
typeName: "BlogPost",
path: "./content/blogpost/**/*.md",
},
},
{
use: `gridsome-plugin-netlify-cms`,
options: {
publicPath: `/admin`,
},
},
],
templates: {
BlogPost: [
{
path: '/blog/:slug',
component: './src/templates/BlogPost.vue'
}
],
},
};
11 changes: 6 additions & 5 deletions gridsome.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
// To restart press CTRL + C in terminal and run `gridsome develop`

module.exports = function (api) {
api.loadSource(({ addCollection }) => {
api.loadSource(({addCollection}) => {
// Use the Data Store API here: https://gridsome.org/docs/data-store-api/
})
});

api.createPages(({ createPage }) => {
// Use the Pages API here: https://gridsome.org/docs/pages-api/
})
api.createPages(async ({createPage, graphql}) => {
// Use the Pages API here: https://gridsome.org/docs/pages-api/
}
);
}
Loading