Create a dedicated content selections page

This commit is contained in:
Chocobozzz 2019-09-23 13:17:12 +02:00
parent c52596a59e
commit 6a7b11cb7f
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 52 additions and 10 deletions

View file

@ -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>

View file

@ -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
} }
] ]

View 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>

View file

@ -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">