Merge branch 'master' of https://git.chrosey.de/chrosey/ferienwohnung-wanderlust
This commit is contained in:
commit
7ca3077c68
36
.drone.yml
Normal file
36
.drone.yml
Normal file
@ -0,0 +1,36 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: Build DockerImage
|
||||
image: docker
|
||||
volumes:
|
||||
- name: docker_sock
|
||||
path: /var/run/docker.sock
|
||||
commands:
|
||||
- docker build --no-cache -t gulp-node:${DRONE_COMMIT} -f Scripte/Dockerfile .
|
||||
|
||||
- name: Run Gulp
|
||||
image: gulp-node:${DRONE_COMMIT}
|
||||
commands:
|
||||
- which gulp
|
||||
- npm install
|
||||
- /usr/local/bin/gulp
|
||||
- zip public.zip dist/*
|
||||
|
||||
- name: Upload Artifacts
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
base_url: https://git.chrosey.de
|
||||
api_key:
|
||||
from_secret: gitea_token
|
||||
files: public.zip
|
||||
note: CHANGELOG.md
|
||||
when:
|
||||
event: tag
|
||||
|
||||
volumes:
|
||||
- name: docker_sock
|
||||
host:
|
||||
path: /var/run/docker.sock
|
||||
3
Scripte/Dockerfile
Normal file
3
Scripte/Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM node:12-alpine
|
||||
RUN npm install -g gulp
|
||||
RUN npm install
|
||||
@ -18,7 +18,18 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="navbar-fixed">
|
||||
<div class="container">
|
||||
<div class="lead">
|
||||
<div class="center">
|
||||
<h1 class="heading-2 light-green-text">Ferienwohnung "<span class="uppercase">Wanderlust</span>"
|
||||
</h1>
|
||||
</div>
|
||||
<h2 class="heading-5 light center light-green-text text-darken-3">
|
||||
<i>Entspannen in gemütlicher Atmosphäre</i>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="navbar sticky" style="top:0px;">
|
||||
<nav class="light-green lighten-1">
|
||||
<div class="nav-wrapper container">
|
||||
<a href="/" id="logo-container" class="brand-logo" title="Gehe zur Startseite">
|
||||
@ -27,31 +38,22 @@
|
||||
<a href="#" data-target="sidenav" class="sidenav-trigger hide-on-large-and-up"><i
|
||||
class="material-icons">menu</i></a>
|
||||
<ul class="right hide-on-med-and-down">
|
||||
<li><a href="#willkommen" title="Gehe zu Abschnitt 'Willkommen'">Willkommen</a></li>
|
||||
<li><a href="#wohnung" title="Gehe zu Abschnitt 'Ferienwohnung'">Ferienwohnung</a></li>
|
||||
<li><a href="#buchung" title="Gehe zu Abschnitt 'Buchung und Anreise'">Buchung und Anreise</a></li>
|
||||
<li><a href="#willkommen" class="sidenav-close"
|
||||
title="Gehe zu Abschnitt 'Willkommen'">Willkommen</a></li>
|
||||
<li><a href="#wohnung" class="sidenav-close"
|
||||
title="Gehe zu Abschnitt 'Ferienwohnung'">Ferienwohnung</a></li>
|
||||
<li><a href="#buchung" class="sidenav-close" title="Gehe zu Abschnitt 'Buchung und Anreise'">Buchung
|
||||
und Anreise</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<ul id="sidenav" class="sidenav">
|
||||
<ul id="sidenav" class="sidenav" style="width:200px;">
|
||||
<li><a href="#willkommen" title="Gehe zu Abschnitt 'Willkommen'">Willkommen</a></li>
|
||||
<li><a href="#wohnung" title="Gehe zu Abschnitt 'Ferienwohnung'">Ferienwohnung</a></li>
|
||||
<li><a href="#buchung" title="Gehe zu Abschnitt 'Buchung und Anreise'">Buchung und Anreise</a></li>
|
||||
</ul>
|
||||
<div id="willkommen-banner" class="parallax-container valign-wrapper">
|
||||
<div class="container">
|
||||
<div class="lead card-panel">
|
||||
<div class="center">
|
||||
<h1 class="heading-2 light-green-text">Ferienwohnung „<span
|
||||
class="uppercase">Wanderlust</span>”
|
||||
</h1>
|
||||
</div>
|
||||
<h2 class="heading-5 light center light-green-text text-darken-3">
|
||||
<strong><i>Entspannen in gemütlicher Atmosphäre</i></strong>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="parallax">
|
||||
<picture>
|
||||
<source srcset="images/collage1.webp" type="image/webp">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user