blob: 2e10ebac26793dccb566c8c5a81249e66f15abce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<template>
<div>
<v-card>
<header id="showcase">
<h1 class="display-3">Blog</h1>
<h1>This is where I post stuff here.</h1>
</header>
</v-card>
<v-container>
<v-col cols="6">
<v-card to="/">
<v-card-title>Blog Post Title</v-card-title>
<v-card-text>Content</v-card-text>
</v-card>
<br>
</v-col>
</v-container>
</div>
</template>
<script>
export default {
name: 'blog',
head: {
title: 'Blog'
}
}
</script>
<style scoped>
#showcase {
background-image:url("../../assets/img/landing_page.png");
background-size: cover;
background-position: center;
height: 30vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 20px;
}
</style>
|