2023-07-19 13:59:52 +02:00
|
|
|
div(v-for="(e, idx) in journey_data.main", :key="idx")
|
|
|
|
.bg-dark.text-white(v-if="journey_step_data.section == idx")
|
2023-07-15 13:45:50 +02:00
|
|
|
.container.section
|
2023-07-19 13:59:52 +02:00
|
|
|
.aligner.text-center.text-white.text-huge(style="margin-bottom: 5px")
|
2023-07-15 13:45:50 +02:00
|
|
|
.aligner--itemTop.fleft
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#prev", v-on:click.prevent="prev_step")
|
2023-07-15 13:45:50 +02:00
|
|
|
i.fas.fa-angle-left
|
|
|
|
span.container
|
2023-07-19 13:59:52 +02:00
|
|
|
span.small {{ journey_data.main[idx].title }} {{ journey_step_data.day }}
|
|
|
|
.text-big.text-gray {{ journey_data.main[idx].step_title[journey_step_data.day] }}
|
2023-07-15 13:45:50 +02:00
|
|
|
.aligner--itemEnd.fright
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#next", v-on:click.prevent="next_step")
|
2023-07-15 13:45:50 +02:00
|
|
|
i.fas.fa-angle-right
|
|
|
|
.row
|
|
|
|
.col-12.col-sm-12
|
|
|
|
include map.pug
|
|
|
|
.row
|
|
|
|
.col-12.col-sm-12
|
2023-07-19 13:59:52 +02:00
|
|
|
.container
|