forked from nutomic/joinpeertube
Create a dedicated content selections page
This commit is contained in:
parent
c52596a59e
commit
6a7b11cb7f
4 changed files with 52 additions and 10 deletions
|
@ -13,15 +13,13 @@
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../scss/_variables';
|
@import '../scss/_variables';
|
||||||
|
|
||||||
.content-selections {
|
.content-selection {
|
||||||
.content-selection {
|
margin-bottom: 80px;
|
||||||
margin-bottom: 80px;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.discover-instances {
|
.discover-instances {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ import News from './views/News'
|
||||||
import Instances from './views/Instances'
|
import Instances from './views/Instances'
|
||||||
import HallOfFame from './views/Hall-Of-Fame'
|
import HallOfFame from './views/Hall-Of-Fame'
|
||||||
import FAQ from './views/FAQ'
|
import FAQ from './views/FAQ'
|
||||||
|
import AllContentSelections from './views/All-Content-Selections'
|
||||||
|
|
||||||
import './scss/main.scss'
|
import './scss/main.scss'
|
||||||
import CommonMixins from './mixins/CommonMixins'
|
import CommonMixins from './mixins/CommonMixins'
|
||||||
|
@ -80,6 +81,10 @@ const routes = [
|
||||||
{
|
{
|
||||||
path: '/faq',
|
path: '/faq',
|
||||||
component: FAQ
|
component: FAQ
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/content-selections',
|
||||||
|
component: AllContentSelections
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
39
src/views/All-Content-Selections.vue
Normal file
39
src/views/All-Content-Selections.vue
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<template>
|
||||||
|
<main>
|
||||||
|
<div class="blocks">
|
||||||
|
|
||||||
|
<div class="title-block">
|
||||||
|
<div class="title" v-translate>Our content selections</div>
|
||||||
|
|
||||||
|
<div class="separator"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<content-selections></content-selections>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@import '../scss/_variables.scss';
|
||||||
|
|
||||||
|
.blocks {
|
||||||
|
margin: 60px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ContentSelections from '../components/ContentSelections'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
ContentSelections
|
||||||
|
},
|
||||||
|
|
||||||
|
metaInfo: function () {
|
||||||
|
return {
|
||||||
|
title: this.$gettext('Our content selections')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -251,9 +251,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="buttons-row">
|
<div class="buttons-row">
|
||||||
<button class="jpt-button">
|
<router-link to="/content-selections" class="jpt-button">
|
||||||
<span v-translate>Explorer les contenus</span>
|
<span v-translate>Explorer les contenus</span>
|
||||||
</button>
|
</router-link>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<router-link to="/instances" class="jpt-button">
|
<router-link to="/instances" class="jpt-button">
|
||||||
|
|
Loading…
Reference in a new issue