Layout container

Torey Heinz committed Apr 18, 2020
commit 152b1bc994fa0226b15ed5349280e327f7b1428c
Showing 2 changed files with 6 additions and 6 deletions
src/layouts/Default.vue +1 -2
@@ @@ -26,8 +26,7 @@
).navbar-item.is-tab {{ item.text }}
BaseLink(v-else :to="item.link").navbar-item.is-tab {{ item.text }}
- div.main.container.section
- slot
+ slot
footer.footer.has-text-centered
p.mb-1: strong Anchor Rock Foundation Inc.
src/templates/ContentPage.vue +5 -4
@@ @@ -1,9 +1,10 @@
<template lang="pug">
Layout
- h1.title.has-text-centered {{ $page.contentPage.heading }}
- h2.subtitle.has-text-centered(v-if="$page.contentPage.subheading") {{ $page.contentPage.subheading }}
- VueRemarkContent.content
- slot
+ div.main.container.section
+ h1.title.has-text-centered {{ $page.contentPage.heading }}
+ h2.subtitle.has-text-centered(v-if="$page.contentPage.subheading") {{ $page.contentPage.subheading }}
+ VueRemarkContent.content
+ slot
</template>
<script>