14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
doctype html
|
|
|
|
include module/head.pug
|
|
|
|
main#app
|
|
include module/nav.pug
|
|
div(v-if='journey_step==-1')
|
|
div(v-for='(item,idx) in journey_data.main' :class="idx%2===0 ? 'bg-dark text-white' : ''" v-cloak='')
|
|
include module/journey_sec.pug
|
|
include module/journey_sec_add.pug
|
|
div(v-else)
|
|
include module/journey_step.pug
|
|
include module/importexport.pug
|
|
include module/foot.pug |