diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
| commit | 848f1ca425e03cdcf7503ab51d80711bbf28c0f2 (patch) | |
| tree | c008b954d10a7318933138c8ea45804eb33ba825 /pages/blog | |
| parent | 37522c3ce749f6582c47e892c935297220e926dc (diff) | |
| download | personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.gz personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.bz2 personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.zip | |
Major changes in home page, added stuff on other pages and favicon
Diffstat (limited to 'pages/blog')
| -rw-r--r-- | pages/blog/index.vue | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/pages/blog/index.vue b/pages/blog/index.vue index f818c20..2e10eba 100644 --- a/pages/blog/index.vue +++ b/pages/blog/index.vue @@ -1,8 +1,20 @@ <template> <div> - <v-card-title>Blog</v-card-title> - <v-card-text>This is where I will be posting my stuff</v-card-text> - <h1>Hello</h1> + <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> @@ -13,8 +25,19 @@ export default { 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> |
