summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSri Aspari <mail@siarie.me>2021-07-29 10:25:42 +0700
committerSri Aspari <mail@siarie.me>2021-08-09 10:06:03 +0700
commitbd4419ee01c453ae12fda96619e591dbf3b9d4d5 (patch)
treef44324b9ae5bc6c6e6a39fb12c075a730936e902
downloadsiarie.me-bd4419ee01c453ae12fda96619e591dbf3b9d4d5.tar.gz
first commit
-rw-r--r--.gitlab-ci.yml17
-rw-r--r--404.html62
-rw-r--r--index.html62
3 files changed, 141 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..17ed1d2
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+# To contribute improvements to CI/CD templates, please follow the Development guide at:
+# https://docs.gitlab.com/ee/development/cicd/templates.html
+# This specific template is located at:
+# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Pages/HTML.gitlab-ci.yml
+
+# Full project: https://gitlab.com/pages/plain-html
+pages:
+  stage: deploy
+  script:
+    - mkdir .public
+    - cp -r * .public
+    - mv .public public
+  artifacts:
+    paths:
+      - public
+  rules:
+    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..7449f42
--- /dev/null
+++ b/404.html
@@ -0,0 +1,62 @@
+<!doctype html>
+<html lang="en">
+    <head>
+        <meta charset="UTF-8"/>
+	<meta http-equiv="X-UA-Compatible" content="IE=edge">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <title>~/homepage</title>
+	<style>
+	 :root {
+	     --background: #FFFCFF;
+	     --foreground: #282629;
+	     --blue: #53A6E1;
+	     --purple: #BF65F0;
+	 }
+
+	 @media (prefers-color-scheme: dark) {
+	     :root {
+		 --background: #282629;
+		 --foreground: #FFFCFF;
+		 --blue: #66BFFF;
+		 --purple: #CC78FA;
+	     }
+	 }
+
+	 * {box-sizing: border-box;}
+	 body {
+	     margin: 0;
+	     font-family: monospace;
+	     font-size: 1rem;
+	     display: flex;
+	     flex-direction: column;
+	     align-items: center;
+	     justify-content: center;
+	     height: 100vh;
+	     width: 100%;
+	     background: var(--background);
+	     color: var(--foreground);
+	 }
+
+	 a {
+	     color: var(--blue);
+	     display: inline-block;
+	     text-decoration: none;
+	 }
+
+	 pre {font-size: 1rem; margin-top: 0;}
+	 ul {margin: 0; padding: 0}
+	 li {display: inline;list-style: none;}
+	</style>
+    </head>
+    <body>
+<pre>
+ _  _     ___   _  _
+| || |   / _ \ | || |
+| || |_ | | | || || |_
+|__   _|| | | ||__   _|
+   | |  | |_| |   | |
+   |_|   \___/    |_|
+======================
+error: page not found. </pre>
+    </body>
+</html>
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7271675
--- /dev/null
+++ b/index.html
@@ -0,0 +1,62 @@
+<!doctype html>
+<html lang="en">
+    <head>
+        <meta charset="UTF-8"/>
+	<meta http-equiv="X-UA-Compatible" content="IE=edge">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <title>~/homepage</title>
+	<style>
+	 :root {
+	     --background: #FFFCFF;
+	     --foreground: #282629;
+	     --blue: #53A6E1;
+	     --purple: #BF65F0;
+	 }
+
+	 @media (prefers-color-scheme: dark) {
+	     :root {
+		 --background: #282629;
+		 --foreground: #FFFCFF;
+		 --blue: #66BFFF;
+		 --purple: #CC78FA;
+	     }
+	 }
+
+	 * {box-sizing: border-box;}
+	 body {
+	     margin: 0;
+	     font-family: monospace;
+	     font-size: 1rem;
+	     display: flex;
+	     flex-direction: column;
+	     align-items: center;
+	     justify-content: center;
+	     height: 100vh;
+	     width: 100%;
+	     background: var(--background);
+	     color: var(--foreground);
+	 }
+
+	 a {
+	     color: var(--blue);
+	     display: inline-block;
+	     text-decoration: none;
+	 }
+
+	 pre {font-size: 1rem; margin-top: 0;}
+	 ul {margin: 0; padding: 0}
+	 li {display: inline;list-style: none;}
+	</style>
+    </head>
+    <body>
+<pre>
+      _               _
+     (_)             (_)
+ ___  _   __ _  _ __  _   ___
+/ __|| | / _` || '__|| | / _ \
+\__ \| || (_| || |   | ||  __/
+|___/|_| \__,_||_|   |_| \___|
+==============================
+$ git commit -m "first commit"</pre>
+    </body>
+</html>