diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2fa20f6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.swp +,* +.idea/ +.vscode/ +build/ \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ec73d9b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: alpine:latest + +pages: + stage: deploy + script: + - echo 'Nothing to do...' + artifacts: + paths: + - public + only: + - master diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d2f1e71 --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2019-2020, XGQT + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..c5537ae --- /dev/null +++ b/public/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + src_prepare + + + + + + + + + +

Test

+ + + + + diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..6f0f679 --- /dev/null +++ b/public/style.css @@ -0,0 +1,12 @@ +* { + background-repeat: no-repeat; + overflow: hidden; +} + +html, +body { + height: 100%; + margin: 0; + padding: 0; + width: 100%; +}