Some checks failed
continuous-integration/drone/push Build is failing
Co-authored-by: sora-ext Co-authored-by: soraefir Reviewed-on: #160
17 lines
547 B
Plaintext
17 lines
547 B
Plaintext
doctype html
|
|
include module/head.pug
|
|
main#app(v-cloak)
|
|
include module/view/nav.pug
|
|
|
|
.bg-dark.text-white(v-if="journey && journey.leg_get()")
|
|
.container
|
|
.row.align(style="padding-top:45px;")
|
|
.col-7.col-sm-5.col-md-4.input.text-big
|
|
input.text-center(v-model="journey.data.name" placeholder="My Journey" type="text" disabled)
|
|
div(
|
|
v-for="(item, idx) in journey.data.main",
|
|
:class="idx % 2 === 0 ? 'bg-white text-dark' : 'bg-dark text-white'"
|
|
)
|
|
include module/view/short_leg.pug
|
|
include module/foot.pug
|