2023-06-25 12:26:17 +02:00
|
|
|
doctype html
|
|
|
|
|
|
|
|
include module/head.pug
|
|
|
|
main#app
|
|
|
|
.container
|
|
|
|
section.mb-big
|
|
|
|
.text-center
|
2023-07-19 13:59:52 +02:00
|
|
|
img.main-logo.mb-medium(
|
|
|
|
src="/public/img/helcel.png",
|
|
|
|
alt="Helcel logo"
|
|
|
|
)
|
2023-06-25 12:26:17 +02:00
|
|
|
div
|
|
|
|
h1.text-huge.text-withSubtitle Open Tourism Map
|
|
|
|
h2.text-big.text-gray Collaborative Holiday Planner
|
|
|
|
p#js-header-waypoint.m-none
|
2023-07-19 13:59:52 +02:00
|
|
|
a.button.button--primary.button--mobileFull(href="#go") Get started
|
2023-06-25 12:26:17 +02:00
|
|
|
.bg-dark
|
|
|
|
.container
|
|
|
|
.row.text-center
|
|
|
|
.col-12.col-sm-3
|
|
|
|
.section
|
2023-07-19 13:59:52 +02:00
|
|
|
img(
|
|
|
|
src="/public/img/lightweight.png",
|
|
|
|
alt="Lightweight",
|
|
|
|
width="118"
|
|
|
|
)
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
|
|
|
h2.text-withSubtitle.text-big.text-white
|
2023-07-19 13:59:52 +02:00
|
|
|
| Lightweight
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
|
|
|
span.text-medium.text-gray
|
|
|
|
| Powered By
|
|
|
|
br
|
|
|
|
| Fastify & Sierra
|
|
|
|
.col-12.col-sm-4
|
|
|
|
.section
|
2023-07-19 13:59:52 +02:00
|
|
|
img(
|
|
|
|
src="/public/img/customizable.png",
|
|
|
|
alt="Customizable",
|
|
|
|
width="118"
|
|
|
|
)
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
|
|
|
h2.text-withSubtitle.text-big.text-white
|
|
|
|
| Customizable
|
|
|
|
br
|
|
|
|
span.text-medium.text-gray
|
|
|
|
| Many Templates
|
|
|
|
br
|
|
|
|
| to choose from
|
|
|
|
.col-12.col-sm-4
|
|
|
|
.section
|
|
|
|
h2.text-withSubtitle.text-big.text-white
|
2023-07-19 13:59:52 +02:00
|
|
|
img(
|
|
|
|
src="/public/img/opensource.png",
|
|
|
|
alt="Open Source",
|
|
|
|
width="118"
|
|
|
|
)
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
2023-07-19 13:59:52 +02:00
|
|
|
|
|
|
|
|
| FOSS
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
|
|
|
span.text-medium.text-gray :-)
|
|
|
|
#go.container-medium.section
|
|
|
|
h2.text-big Your journey
|
|
|
|
p
|
2023-07-19 13:59:52 +02:00
|
|
|
| Browse hotels, restaurants and attractions,....
|
2023-06-25 12:26:17 +02:00
|
|
|
br
|
2023-07-19 13:59:52 +02:00
|
|
|
|
|
|
|
|
| Select and plan the varying elements of your journey
|
2023-06-25 12:26:17 +02:00
|
|
|
.aligner.aligner--contentEnd
|
|
|
|
.input
|
2023-07-19 13:59:52 +02:00
|
|
|
input#journey_id(v-model="journey_id", placeholder="ID", type="text")
|
|
|
|
button.button.button--primary.button--mobileFull(
|
|
|
|
v-on:click="start_journey"
|
|
|
|
) Start the journey
|
2023-06-25 12:26:17 +02:00
|
|
|
|
2023-07-19 13:59:52 +02:00
|
|
|
include module/foot.pug
|