- She/Her
- Programming, art, design, and other queer things.
- Web Engineer by day who pretends to be a dog. Dog by night who pretends to be a programmer.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/PostTags.vue b/src/components/PostTags.vue
deleted file mode 100644
index ca8a3ab..0000000
--- a/src/components/PostTags.vue
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
- # {{ tag.title }}
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/README.md b/src/components/README.md
deleted file mode 100644
index 992938c..0000000
--- a/src/components/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-Add components that will be imported to Pages and Layouts to this folder.
-Learn more about components here: https://gridsome.org/docs/components
-
-You can delete this file.
\ No newline at end of file
diff --git a/src/components/ToggleTheme.vue b/src/components/ToggleTheme.vue
deleted file mode 100644
index 78ac5bd..0000000
--- a/src/components/ToggleTheme.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/favicon.png b/src/favicon.png
deleted file mode 100644
index 65ae20d..0000000
Binary files a/src/favicon.png and /dev/null differ
diff --git a/src/index.html b/src/index.html
deleted file mode 100644
index 17c0572..0000000
--- a/src/index.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- ${head}
-
-
-
-
-
-
- ${app}
- ${scripts}
-
-
diff --git a/src/layouts/Default.vue b/src/layouts/Default.vue
deleted file mode 100644
index f61ae88..0000000
--- a/src/layouts/Default.vue
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/layouts/README.md b/src/layouts/README.md
deleted file mode 100644
index 60d7691..0000000
--- a/src/layouts/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-Layout components are used to wrap pages and templates. Layouts should contain components like headers, footers or sidebars that will be used across the site.
-
-Learn more about Layouts: https://gridsome.org/docs/layouts
-
-You can delete this file.
\ No newline at end of file
diff --git a/src/main.js b/src/main.js
deleted file mode 100644
index d90e270..0000000
--- a/src/main.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// Import main css
-import '~/assets/style/index.scss'
-
-// Import default layout so we don't need to import it to every page
-import DefaultLayout from '~/layouts/Default.vue'
-
-// The Client API can be used here. Learn more: gridsome.org/docs/client-api
-export default function (Vue, { router, head, isClient }) {
-
- // Set default layout as a global component
- Vue.component('Layout', DefaultLayout)
-}
\ No newline at end of file
diff --git a/src/pages/Index.vue b/src/pages/Index.vue
deleted file mode 100644
index 92adde9..0000000
--- a/src/pages/Index.vue
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-query ($page: Int) {
- posts: allPost(perPage: 10, page: $page) @paginate {
- pageInfo {
- totalPages
- currentPage
- }
- edges {
- node {
- id
- title
- path
- tags {
- id
- title
- path
- }
- date (format: "D. MMMM YYYY")
- timeToRead
- description
- coverImage (width: 770, height: 380, blur: 10)
- ...on Post {
- id
- title
- path
- }
- }
- }
- }
-}
-
-
-
diff --git a/src/pages/README.md b/src/pages/README.md
deleted file mode 100644
index 9edbf1d..0000000
--- a/src/pages/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-Pages are usually used for normal pages or for listing items from a GraphQL collection.
-Add .vue files here to create pages. For example **About.vue** will be **site.com/about**.
-Learn more about pages: https://gridsome.org/docs/pages
-
-You can delete this file.
\ No newline at end of file
diff --git a/src/templates/Post.vue b/src/templates/Post.vue
deleted file mode 100644
index a2d7b2b..0000000
--- a/src/templates/Post.vue
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
- {{ $page.post.title }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-query Post ($path: String!) {
- post: post (path: $path) {
- title
- path
- date (format: "D. MMMM YYYY")
- timeToRead
- tags {
- id
- title
- path
- }
- description
- content
- coverImage (width: 860, blur: 10)
- }
-}
-
-
-
\ No newline at end of file
diff --git a/src/templates/README.md b/src/templates/README.md
deleted file mode 100644
index 45fce4d..0000000
--- a/src/templates/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-Templates for **GraphQL collections** should be added here.
-To create a template for a collection called `WordPressPost`
-create a file named `WordPressPost.vue` in this folder.
-
-Learn more: https://gridsome.org/docs/templates
-
-You can delete this file.
\ No newline at end of file
diff --git a/src/templates/Tag.vue b/src/templates/Tag.vue
deleted file mode 100644
index 557e2f3..0000000
--- a/src/templates/Tag.vue
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- # {{ $page.tag.title }}
-
-
-
-
-
-
-
-
-
-query Tag ($id: String!) {
- tag (id: $id) {
- title
- belongsTo {
- edges {
- node {
- ...on Post {
- title
- path
- date (format: "D. MMMM YYYY")
- timeToRead
- description
- coverImage (width: 860, blur: 10)
- content
- }
- }
- }
- }
- }
-}
-
-
-
-
-
-
diff --git a/static/README.md b/static/README.md
deleted file mode 100644
index 1dd0aae..0000000
--- a/static/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Add static files here. Files in this directory will be copied directly to `dist` folder during build. For example, /static/robots.txt will be located at https://yoursite.com/robots.txt.
-
-This file should be deleted.
\ No newline at end of file
diff --git a/static/admin/config.yml b/static/admin/config.yml
deleted file mode 100644
index 56113c7..0000000
--- a/static/admin/config.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-backend:
- name: git-gateway
- branch: main # Branch to update (optional; defaults to master)
-media_folder: "static/images/uploads" # Media files will be stored in the repo under static/images/uploads
-public_folder: "/images/uploads" # The src attribute for uploaded media will begin with /images/uploads
-collections:
- - name: "" # Used in routes, e.g., /admin/collections/blog
- label: "Posts" # Used in the UI
- folder: "content/posts" # The path to the folder where the documents are stored
- create: true # Allow users to create new documents in this collection
- slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
- extension: 'md'
- fields: # The fields for each document, usually in front matter
- - {label: "Title", name: "title", widget: "string"}
- - {label: "Date", name: "date", widget: "datetime"}
- - label: "Tags"
- name: "tags"
- widget: "list"
- field: {label: Name, name: name, widget: string, default: "tag"}
- - {label: "Cover Image", name: "coverImage", widget: "image", required: false}
- - {label: "Description", name: "description", widget: "markdown"}
- - {label: "Body", name: "body", widget: "markdown"}
diff --git a/static/admin/index.html b/static/admin/index.html
deleted file mode 100644
index 5abce9c..0000000
--- a/static/admin/index.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
- Content Manager
-
-
-
-
-
-
-