2019-01-03 14:06:28 +00:00
|
|
|
<template>
|
|
|
|
<div class="content-page">
|
|
|
|
<h1>{{ heading }}</h1>
|
|
|
|
<section class="content-container">
|
|
|
|
<slot></slot>
|
|
|
|
</section>
|
2019-01-03 14:49:25 +00:00
|
|
|
<div class="background background-container">
|
|
|
|
<div class="background background-loading"
|
|
|
|
:style="loadingStyle"></div>
|
|
|
|
<div class="background background-img"
|
|
|
|
:style="backgroundStyle"></div>
|
|
|
|
</div>
|
2019-01-03 14:06:28 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
bgLoading: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: function () {
|
2019-01-03 14:49:25 +00:00
|
|
|
return 'linear-gradient(to top, orange, green)'
|
2019-01-03 14:06:28 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
img: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: function () {
|
|
|
|
return 'url(https://via.placeholder.com/1920x1080)'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
heading: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
loadingStyle () {
|
|
|
|
return {
|
2019-01-03 14:49:25 +00:00
|
|
|
background: this.bgLoading
|
|
|
|
}
|
|
|
|
},
|
|
|
|
backgroundStyle () {
|
|
|
|
return {
|
2019-01-03 14:55:20 +00:00
|
|
|
backgroundImage: this.img
|
2019-01-03 14:06:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
.content-page {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: $site-menu__header-width 0 0 0;
|
|
|
|
|
|
|
|
@media (min-width: $bp__layout) {
|
|
|
|
padding: 0 0 0 $site-menu__header-width;
|
|
|
|
}
|
|
|
|
|
|
|
|
background-color: rgba(black, .1); // TEMP
|
|
|
|
}
|
2019-01-03 14:49:25 +00:00
|
|
|
|
|
|
|
.content-container {
|
|
|
|
z-index: 10;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background-container {
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2019-01-03 14:55:20 +00:00
|
|
|
|
|
|
|
.background-img {
|
|
|
|
background-size: cover;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
2019-01-03 14:06:28 +00:00
|
|
|
</style>
|