OTM/template/module/view_step.pug
soraefir 6250f17207
All checks were successful
continuous-integration/drone/push Build is passing
Keybind and view fix
2023-07-15 13:45:50 +02:00

23 lines
880 B
Plaintext

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