mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
minor
This commit is contained in:
parent
8469f34b39
commit
b2fe976998
1 changed files with 6 additions and 8 deletions
|
@ -1,16 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<v-container id='home' class='pa-0 pa-sm-2' fluid>
|
<v-container id='home' fluid>
|
||||||
|
<div class="mt-3 mb-1 ml-1">
|
||||||
<div class="mt-3 mb-1">
|
<v-btn text color='primary' to='/'><v-icon v-text='mdiChevronLeft'/></v-btn>
|
||||||
<v-btn text color='primary' to='/'><v-icon v-text='mdiChevronLeft'/> Home</v-btn>
|
<v-btn v-for='cohort in cohorts' text color='primary' :key='cohort.id' :to='`/g/${cohort.name}`' v-text='cohort.name' />
|
||||||
<v-btn v-for='cohort in cohorts' text color='primary' :key='cohort.id' :to='`/g/${cohort.name}`' v-text='cohort.name' />
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<h1 class='d-block text-h3 font-weight-black text-center align-center text-uppercase mt-10 mb-12 mx-auto w-100 text-underline'><u>{{cohort}}</u></h1>
|
<h1 class='d-block text-h3 font-weight-black text-center align-center text-uppercase mt-10 mb-12 mx-auto w-100 text-underline'><u>{{cohort}}</u></h1>
|
||||||
|
|
||||||
<!-- Events -->
|
<!-- Events -->
|
||||||
<!-- .mb-2.mt-1.pl-1.pl-sm-2 -->
|
<div class='mb-2 mt-1 pl-1 pl-sm-2' id="events">
|
||||||
<div id="events">
|
|
||||||
<Event :event='event' v-for='(event, idx) in events' :lazy='idx>2' :key='event.id'></Event>
|
<Event :event='event' v-for='(event, idx) in events' :lazy='idx>2' :key='event.id'></Event>
|
||||||
</div>
|
</div>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|
Loading…
Reference in a new issue