aboutsummaryrefslogtreecommitdiff
path: root/pages/blog/index.vue
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-27 10:04:32 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-27 10:04:32 -0500
commit3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3 (patch)
tree1fcb6d2b7abba040d8b178cb6d86cd60f9051a6e /pages/blog/index.vue
parentfcb807c3b6357ebef82a16ec10085a51278296b0 (diff)
downloadpersonal-website-3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3.tar.gz
personal-website-3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3.tar.bz2
personal-website-3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3.zip
Removed blog; Removed video temp; New logo; 20212020-rewrite
Diffstat (limited to 'pages/blog/index.vue')
-rw-r--r--pages/blog/index.vue49
1 files changed, 0 insertions, 49 deletions
diff --git a/pages/blog/index.vue b/pages/blog/index.vue
deleted file mode 100644
index c2763ae..0000000
--- a/pages/blog/index.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-<template>
- <div>
- <v-card>
- <header id="showcase">
- <h1 class="display-3 animate__animated animate__fadeIn">{{ $t('BlogText') }}</h1>
- <h1 class="animate__animated animate__fadeIn">{{ $t('BlogSubtitle') }}</h1>
- </header>
- </v-card>
- <v-container>
- <div v-for="post in blogPosts" :key="post.title">
- <v-card :to="'/blog/' + post.slug">
- <v-card-title>{{ post.title }}</v-card-title>
- <v-card-subtitle>Created on {{post.date}}</v-card-subtitle>
- <v-card-text>{{ post.description }}</v-card-text>
- </v-card>
- </div>
- </v-container>
- </div>
-</template>
-
-<script>
-export default {
- name: 'blog',
- head: {
- title: 'Blog'
- },
- computed: {
- blogPosts () {
- return this.$store.state.blogPosts
- }
- }
-}
-
-</script>
-
-<style scoped>
- #showcase {
- background-image:url("../../assets/img/landing_page.png");
- background-size: cover;
- background-position: center;
- height: 30vh;
- display: flex;
- text-shadow: 0px 0px 10px #000000;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 0 20px;
- }
-</style>