|
|
@ -1,8 +1,10 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div class="content">
|
|
|
|
<div class="content">
|
|
|
|
|
|
|
|
<slot name="top" />
|
|
|
|
<Content />
|
|
|
|
<Content />
|
|
|
|
<NextAndPrevLinks />
|
|
|
|
<NextAndPrevLinks />
|
|
|
|
<PageEdit />
|
|
|
|
<PageEdit />
|
|
|
|
|
|
|
|
<slot name="bottom" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
@ -10,7 +12,7 @@
|
|
|
|
import NextAndPrevLinks from './NextAndPrevLinks.vue'
|
|
|
|
import NextAndPrevLinks from './NextAndPrevLinks.vue'
|
|
|
|
import PageEdit from './PageEdit.vue'
|
|
|
|
import PageEdit from './PageEdit.vue'
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
components:{ NextAndPrevLinks, PageEdit }
|
|
|
|
components: { NextAndPrevLinks, PageEdit }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
@ -18,6 +20,7 @@ export default {
|
|
|
|
.content {
|
|
|
|
.content {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0.025rem 2.5rem 2rem;
|
|
|
|
padding: 0.025rem 2.5rem 2rem;
|
|
|
|
|
|
|
|
/* if this is moved to a variable, add it to BuySellAds.vue */
|
|
|
|
max-width: 50rem;
|
|
|
|
max-width: 50rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|