Skip to content

Commit 3c470f6

Browse files
committed
added instructions to readme, container to blog post body
1 parent 8226a5c commit 3c470f6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ This project comes with Netlify CMS ready to rumble, and a basic blog configurat
5959
2. Enter the Netlify URL of your site when prompted.
6060
3. Login with the account you created or one of the external providers, if you enabled them.
6161

62+
#### To change netlify deploy url, run localStorage.removeItem("netlifySiteURL") in the browser console.
63+
6264
### Use Netlify CMS Dashboard
6365

6466
1. In your browser, naviage to `localhost:3000/admin`.

pages/blog/_blog.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
width="1280"
1313
max-height="300"
1414
/>
15-
<v-card-title class="display-1">{{blogPost.title}}</v-card-title>
16-
<v-card-subtitle class="subtitle-1">{{blogPost.description}}</v-card-subtitle>
17-
<v-card-text v-html="$md.render(blogPost.body)"></v-card-text>
15+
<v-card-title class="display-2 mb-3">{{blogPost.title}}</v-card-title>
16+
<v-card-subtitle class="headline">{{blogPost.description}}</v-card-subtitle>
17+
<v-card-text class="container" v-html="$md.render(blogPost.body)"></v-card-text>
1818
</v-card>
1919
</article>
2020
</v-col>

0 commit comments

Comments
 (0)