This commit is contained in:
soraefir
2025-03-02 00:53:25 +01:00
parent 7efb63764c
commit 14e18a3e50
36 changed files with 1858 additions and 2001 deletions

16
src/template/short.pug Normal file
View File

@@ -0,0 +1,16 @@
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