diff --git a/css/donation.css b/css/donation.css
new file mode 100644
index 0000000..6fdd497
--- /dev/null
+++ b/css/donation.css
@@ -0,0 +1,70 @@
+:root {
+ --donation-modal-height: 200px;
+ --donation-modal-width: 600px;
+ --donation-modal-top: 50%;
+}
+
+#donate {
+ text-decoration-line: underline;
+}
+
+#donate:hover {
+ cursor: pointer;
+}
+
+#donateModal {
+ display: none;
+}
+
+.modal {
+ top: 0;
+ right: 0;
+ position: absolute;
+ margin: auto;
+ height: 100vh;
+ width: 100%;
+}
+
+.modal .card {
+ opacity: 1;
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ margin: auto;
+ height: var(--donation-modal-height);
+ width: var(--donation-modal-width);
+ max-width: 100%;
+}
+
+.refer-area {
+ text-decoration-line: underline;
+}
+
+@media screen and (max-width: 700px) {
+ :root {
+ --donation-modal-height: 350px;
+ --donation-modal-width: 600px;
+ --donation-modal-top: 50%;
+ }
+
+ .modal .card {
+ vertical-align: middle;
+ width: 80%;
+ opacity: 1;
+ }
+
+ .modal {
+ position: absolute;
+ margin: auto;
+ height: 100%;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.4);
+ }
+
+ html,
+ body {
+ height: 100% !important;
+ }
+}
\ No newline at end of file
diff --git a/css/github.css b/css/github.css
new file mode 100644
index 0000000..c4f38b1
--- /dev/null
+++ b/css/github.css
@@ -0,0 +1,60 @@
+.hoverable:hover {
+ backdrop-filter: blur(150px);
+ cursor: pointer;
+}
+
+#github_projects .stargazers {
+ padding-right: var(--padding-small);
+}
+
+#github_projects .stars {
+ color: var(--main-txt-color) !important;
+}
+
+#github_projects a {
+ text-transform: capitalize;
+ text-decoration-line: none;
+}
+
+.github-modal>.card {
+ height: 80% !important;
+ overflow-y: auto;
+}
+
+#github_projects .card {
+ padding: var(--padding-big);
+ text-align: left;
+}
+
+#github_projects .card a {
+ color: var(--main-txt-color) !important;
+}
+
+#github_projects .card p {
+ margin: 0;
+}
+
+.github-hidden {
+ display: none;
+}
+
+.github-modal>.card {
+ text-align: start;
+}
+
+.github-modal img {
+ max-width: 100%;
+}
+
+::-webkit-scrollbar {
+ width: 5px;
+ height: 5px;
+}
+
+::-webkit-scrollbar-track {
+ background: transparent;
+}
+
+::-webkit-scrollbar-thumb {
+ background: #eaebfe;
+}
\ No newline at end of file
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..2de0465
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,427 @@
+:root {
+ --main-padding: 15px;
+ --main-margin: 10px;
+ --main-img-size: 200px;
+ --main-bio-size: 200px;
+ --main-bio-margin: 5px;
+ --main-icon-width: 80px;
+ --main-border-radius: 5px;
+ --padding-big: 20px;
+ --padding-small: 5px;
+ --main-container-width: 750px;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --main-txt-color: #fff;
+ }
+}
+
+@media (prefers-color-scheme: light) {
+ :root {
+ --main-txt-color: #fff;
+ }
+}
+
+h2 {
+ line-height-step: 100px;
+}
+
+html,
+body {
+ font-family: 'Comic Sans MS', Arial, sans-serif;
+ margin: 0;
+ color: var(--main-txt-color);
+ text-align: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-attachment: fixed;
+ background-image: url("../img/back.jpg");
+ height: 100%;
+}
+
+a {
+ color: var(--main-txt-color);
+ text-decoration-line: none;
+}
+
+footer {
+ padding-bottom: 5px;
+ max-width: 100%;
+}
+
+footer a {
+ color: var(--main-txt-color);
+ text-decoration-line: underline;
+}
+
+#preloader div {
+ background: url("../img/back.jpg"), url("../img/loading.gif") no-repeat center center;
+}
+
+.js-reminder {
+ font-style: normal;
+ font-weight: 900;
+ padding: var(--main-padding);
+}
+
+.bio {
+ display: none !important;
+ font-style: normal;
+ font-weight: 900;
+ padding: var(--main-padding);
+}
+
+.grid-container {
+ margin: var(--main-margin);
+ display: grid;
+ justify-content: center;
+ grid-template-columns: auto auto;
+}
+
+.grid-item {
+ width: var(--main-bio-size);
+ margin-left: var(--main-padding);
+ backdrop-filter: blur(150px);
+ border-radius: var(--main-border-radius);
+}
+
+.grid-item h1,
+.grid-item-start h1 {
+ margin: var(--main-bio-margin);
+}
+
+.grid-item-start {
+ grid-row-start: 1;
+ grid-row-end: 8;
+}
+
+.bio table .right {
+ cursor: pointer;
+ border-radius: var(--main-border-radius);
+ backdrop-filter: blur(150px);
+}
+
+.social {
+ border: 0;
+ margin: auto;
+}
+
+.project {
+ position: relative;
+}
+
+.project img {
+ opacity: 1;
+ display: block;
+ width: 100%;
+ height: auto;
+ transition: .5s ease;
+ backface-visibility: hidden;
+ box-shadow: 0 4px 8px 0 #0e85b456;
+ transition: 0.3s;
+}
+
+.project:hover img {
+ opacity: 0.3
+}
+
+.project:hover p {
+ opacity: 1.0
+}
+
+.project p {
+ transition: .5s ease;
+ opacity: 0;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ -ms-transform: translate(-50%, -50%)
+}
+
+.portfolio {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, 128px);
+ justify-content: space-between;
+}
+
+.portfolio-done {
+ display: grid;
+ grid-template-columns: 24% 24% 24% 24%;
+ justify-content: space-between;
+ margin-bottom: 2em;
+}
+
+.portfolio-done-item {
+ height: 128px;
+}
+
+.social a {
+ border: 0;
+}
+
+ul.nav {
+ list-style-type: none;
+ margin: 0;
+ overflow: hidden;
+ backdrop-filter: blur(150px);
+ box-shadow: 0 4px 8px 0 #0e85b456;
+ transition: 0.3s;
+}
+
+.hidden {
+ display: none;
+}
+
+ul.nav li {
+ float: right;
+}
+
+ul.nav li a {
+ display: block;
+ color: white;
+ text-decoration: none;
+}
+
+ul.nav li a:hover:not(.active) {
+ background-color: #111;
+}
+
+ul.nav li a.active {
+ background-color: #2F3136;
+}
+
+ul.nav li.left {
+ float: left;
+}
+
+.card-projects {
+ display: grid;
+ box-shadow: 0 4px 8px 0 #0e85b456;
+ transition: 0.3s;
+ backdrop-filter: blur(150px);
+}
+
+.card-projects:hover {
+ box-shadow: 0 8px 16px 0 #0e85b456;
+}
+
+.icon-area i {
+ justify-content: space-between;
+ width: var(--main-icon-width);
+ padding-top: var(--main-padding);
+ padding-bottom: var(--main-padding);
+ border-radius: var(--main-border-radius);
+}
+
+.icon-area i:hover {
+ cursor: pointer;
+ backdrop-filter: blur(150px);
+}
+
+.icon-area a {
+ color: var(--main-txt-color);
+}
+
+.card {
+ margin-top: var(--main-padding);
+ box-shadow: 0 4px 8px 0 #0e85b456;
+ transition: 0.3s;
+ backdrop-filter: blur(20px);
+ padding: var(--main-padding);
+ text-align: center;
+ color: var(--main-txt-color);
+}
+
+.nomargin {
+ margin: 0;
+}
+
+.hover-items,
+.hover-items a {
+ color: var(--main-txt-color);
+ padding: var(--main-padding) 10px;
+ font-size: large;
+ margin: auto;
+ line-height: 1.5em;
+ text-align: center;
+}
+
+.hover-items a:hover {
+ cursor: pointer;
+ opacity: 0.8;
+}
+
+
+.profile img {
+ margin: auto;
+ max-width: var(--main-img-size);
+ border-radius: 50%;
+}
+
+.card:hover {
+ box-shadow: 0 8px 16px 0 #0e85b456;
+}
+
+.container {
+ background: transparent;
+ backdrop-filter: blur(20px);
+ margin: auto;
+ width: var(--main-container-width);
+}
+
+.media-body {
+ color: var(--main-txt-color) !important;
+ margin-bottom: 10px;
+}
+
+.table {
+ color: var(--main-txt-color) !important;
+ font-weight: lighter;
+}
+
+@media screen and (max-width: 700px) {
+ :root {
+ --mobile-margin: 5px;
+ --main-container-width: 95%;
+ --mobile-width: 90%;
+ }
+
+ ul.nav li.right,
+ ul.nav li {
+ float: none;
+ }
+
+ ul.nav li.left {
+ display: none;
+ }
+
+ .portfolio-done {
+ grid-template-columns: auto;
+ justify-content: initial;
+ width: 100%;
+ }
+
+ .portfolio-done-item {
+ width: 100%;
+ }
+
+ .grid-container {
+ grid-template-columns: auto;
+ }
+
+ .icon-area i {
+ margin-top: var(--mobile-margin);
+ }
+
+ .short_desc {
+ width: var(--mobile-width);
+ }
+
+ footer {
+ width: var(--main-container-width);
+ }
+
+ .bio-text {
+ width: 95% !important;
+ }
+
+ #left-arrow {
+ position: initial !important;
+ margin-right: 10px;
+ }
+
+ #right-arrow {
+ position: initial !important;
+ margin-left: 10px;
+ }
+
+ .max60 {
+ max-width: 100%;
+ }
+}
+
+#bio {
+ text-decoration-line: underline;
+}
+
+.max60 {
+ max-width: 90%;
+ margin: auto;
+}
+
+#bio:hover {
+ cursor: pointer;
+}
+
+#right-arrow {
+ position: relative;
+ -webkit-animation: linear infinite alternate;
+ -webkit-animation-name: runRight;
+ -webkit-animation-duration: 2s;
+}
+
+#left-arrow {
+ position: relative;
+ -webkit-animation: linear infinite alternate;
+ -webkit-animation-name: runLeft;
+ -webkit-animation-duration: 2s;
+}
+
+@-webkit-keyframes runLeft {
+ 0% {
+ left: 50%;
+ }
+
+ 50% {
+ left: 70%;
+ }
+
+ 100% {
+ left: 50%;
+ }
+}
+
+@-webkit-keyframes runRight {
+ 0% {
+ right: 50%;
+ }
+
+ 50% {
+ right: 70%;
+ }
+
+ 100% {
+ right: 50%;
+ }
+}
+
+.hover-items {
+ display: grid;
+ grid-template-columns: auto auto auto;
+ align-items: center;
+}
+
+.bio-text {
+ font-size: 20px;
+ opacity: 0;
+ width: 60%;
+ margin-bottom: 15px !important;
+ margin: auto;
+ padding: 10px;
+}
+
+@media only screen and (min-width: 1025px) {
+ .circle {
+ height: 24px;
+ width: 24px;
+ border-radius: 24px;
+ background-color: black;
+ position: fixed;
+ top: 0;
+ left: 0;
+ pointer-events: none;
+ z-index: 99999999;
+ }
+}
\ No newline at end of file
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 0000000..1f5fce7
Binary files /dev/null and b/favicon.ico differ
diff --git a/fonts/exo-v20-latin/exo-v20-latin-regular.eot b/fonts/exo-v20-latin/exo-v20-latin-regular.eot
new file mode 100644
index 0000000..3e20fb9
Binary files /dev/null and b/fonts/exo-v20-latin/exo-v20-latin-regular.eot differ
diff --git a/fonts/exo-v20-latin/exo-v20-latin-regular.svg b/fonts/exo-v20-latin/exo-v20-latin-regular.svg
new file mode 100644
index 0000000..393e87f
--- /dev/null
+++ b/fonts/exo-v20-latin/exo-v20-latin-regular.svg
@@ -0,0 +1,332 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/fonts/exo-v20-latin/exo-v20-latin-regular.ttf b/fonts/exo-v20-latin/exo-v20-latin-regular.ttf
new file mode 100644
index 0000000..e9c70cd
Binary files /dev/null and b/fonts/exo-v20-latin/exo-v20-latin-regular.ttf differ
diff --git a/fonts/exo-v20-latin/exo-v20-latin-regular.woff b/fonts/exo-v20-latin/exo-v20-latin-regular.woff
new file mode 100644
index 0000000..ce6c1da
Binary files /dev/null and b/fonts/exo-v20-latin/exo-v20-latin-regular.woff differ
diff --git a/fonts/exo-v20-latin/exo-v20-latin-regular.woff2 b/fonts/exo-v20-latin/exo-v20-latin-regular.woff2
new file mode 100644
index 0000000..0b81af6
Binary files /dev/null and b/fonts/exo-v20-latin/exo-v20-latin-regular.woff2 differ
diff --git a/fonts/exo.css b/fonts/exo.css
new file mode 100644
index 0000000..abd97f1
--- /dev/null
+++ b/fonts/exo.css
@@ -0,0 +1,19 @@
+/* exo-regular - latin */
+@font-face {
+ font-family: 'Exo';
+ font-style: normal;
+ font-weight: 400;
+ src: url('../fonts/exo-v20-latin/exo-v20-latin-regular.eot');
+ /* IE9 Compat Modes */
+ src: local(''),
+ url('../fonts/exo-v20-latin/exo-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
+ /* IE6-IE8 */
+ url('../fonts/exo-v20-latin/exo-v20-latin-regular.woff2') format('woff2'),
+ /* Super Modern Browsers */
+ url('../fonts/exo-v20-latin/exo-v20-latin-regular.woff') format('woff'),
+ /* Modern Browsers */
+ url('../fonts/exo-v20-latin/exo-v20-latin-regular.ttf') format('truetype'),
+ /* Safari, Android, iOS */
+ url('../fonts/exo-v20-latin/exo-v20-latin-regular.svg#Exo') format('svg');
+ /* Legacy iOS */
+}
\ No newline at end of file
diff --git a/fonts/roboto-v30-latin/roboto-v30-latin-regular.eot b/fonts/roboto-v30-latin/roboto-v30-latin-regular.eot
new file mode 100644
index 0000000..c244b08
Binary files /dev/null and b/fonts/roboto-v30-latin/roboto-v30-latin-regular.eot differ
diff --git a/fonts/roboto-v30-latin/roboto-v30-latin-regular.svg b/fonts/roboto-v30-latin/roboto-v30-latin-regular.svg
new file mode 100644
index 0000000..627f5a3
--- /dev/null
+++ b/fonts/roboto-v30-latin/roboto-v30-latin-regular.svg
@@ -0,0 +1,308 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/fonts/roboto-v30-latin/roboto-v30-latin-regular.ttf b/fonts/roboto-v30-latin/roboto-v30-latin-regular.ttf
new file mode 100644
index 0000000..d0e6325
Binary files /dev/null and b/fonts/roboto-v30-latin/roboto-v30-latin-regular.ttf differ
diff --git a/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff b/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff
new file mode 100644
index 0000000..9eaa94f
Binary files /dev/null and b/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff differ
diff --git a/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff2 b/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff2
new file mode 100644
index 0000000..020729e
Binary files /dev/null and b/fonts/roboto-v30-latin/roboto-v30-latin-regular.woff2 differ
diff --git a/fonts/roboto.css b/fonts/roboto.css
new file mode 100644
index 0000000..42ae335
--- /dev/null
+++ b/fonts/roboto.css
@@ -0,0 +1,19 @@
+/* roboto-regular - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 400;
+ src: url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.eot');
+ /* IE9 Compat Modes */
+ src: local(''),
+ url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
+ /* IE6-IE8 */
+ url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.woff2') format('woff2'),
+ /* Super Modern Browsers */
+ url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.woff') format('woff'),
+ /* Modern Browsers */
+ url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.ttf') format('truetype'),
+ /* Safari, Android, iOS */
+ url('../fonts/roboto-v30-latin/roboto-v30-latin-regular.svg#Roboto') format('svg');
+ /* Legacy iOS */
+}
\ No newline at end of file
diff --git a/img/back.jpg b/img/back.jpg
new file mode 100644
index 0000000..26d4b84
Binary files /dev/null and b/img/back.jpg differ
diff --git a/img/logo.png b/img/logo.png
new file mode 100644
index 0000000..1f5fce7
Binary files /dev/null and b/img/logo.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..103c3a7
--- /dev/null
+++ b/index.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+ Julian Lechner
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Hy! 👋 I'm Julian Lechner!
+
aka. FrauJulian
+
+
+
+
+ My name is Julian, I am 15 years old and I live in beautiful Lower Austria! In my free time I mainly sit in front of the PC and work on my projects, I also go suba diving a lot!
+
+
+ I am currently in my final year! Next year, 2024, I would like to start an apprenticeship as an application developer!
+
+
+ I mainly work for SynHost.de, which is a German hosting company. There I am responsible for customer service and programming new functions.
+
+
+ Of course I also have smaller projects, including Botlist.me and SynRadio.de! I work on these projects on the side.
+
+
+ Currently you can hire my services as a NodeJS Developer! I develop almost everything for you, with already existing features as well as completely new ones.
+
+
Just contact me!
+
+
+
ENABLE JAVASCRIPT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
I develop with
+
+
+
NodeJS
+
+
+
json
+
+
+
NPM
+
+
+
HTML
+
+
+
CSS
+
+
+
JavaScript
+
+
+
Java
+
+
+
Linux
+
+
+
phpMyAdmin
+
+
+
SQL
+
+
+
+
+
+
+
+
+
+
diff --git a/js/dynamic.js b/js/dynamic.js
new file mode 100644
index 0000000..13a8872
--- /dev/null
+++ b/js/dynamic.js
@@ -0,0 +1,103 @@
+let bioBtn = document.getElementById('short-desc');
+let bioModel = document.getElementsByClassName('bio-text')[0];
+let leftArrow = document.getElementById("left-arrow");
+let rightArrow = document.getElementById("right-arrow");
+let hidden = true;
+bioBtn.onclick = function () {
+ if (hidden) {
+ bioModel.classList.remove("hidden");
+ leftArrow.classList.remove("fa-arrow-right");
+ leftArrow.classList.add("fa-arrow-down");
+ rightArrow.classList.remove("fa-arrow-left");
+ rightArrow.classList.add("fa-arrow-down");
+ leftArrow.style.position = "relative";
+ rightArrow.style.position = "relative";
+ unfade(bioModel);
+ } else {
+ bioModel.classList.add("hidden");
+ leftArrow.classList.remove("fa-arrow-down");
+ leftArrow.classList.add("fa-arrow-right");
+ rightArrow.classList.remove("fa-arrow-down");
+ rightArrow.classList.add("fa-arrow-left");
+ leftArrow.style.position = "relative";
+ rightArrow.style.position = "relative";
+ fade(bioModel);
+ }
+ hidden = !hidden;
+};
+
+bioModel.onclick = function (evt) {
+ if (evt.target == bioModel) {
+ bioModel.classList.add("hidden");
+ document.body.style.opacity = 1;
+ }
+};
+
+function fade(element) {
+ var op = 1;
+ var timer = setInterval(function () {
+ if (op <= 0.1) {
+ clearInterval(timer);
+ element.style.display = 'none';
+ }
+ element.style.opacity = op;
+ element.style.filter = 'alpha(opacity=' + op * 100 + ")";
+ op -= op * 0.1;
+ }, 5);
+}
+
+function unfade(element) {
+ var op = 0.1;
+ element.style.display = 'block';
+ var timer = setInterval(function () {
+ if (op >= 1) {
+ clearInterval(timer);
+ }
+ element.style.opacity = op;
+ element.style.filter = 'alpha(opacity=' + op * 100 + ")";
+ op += op * 0.1;
+ }, 5);
+}
+
+const coords = { x: 0, y: 0 };
+const circles = document.querySelectorAll(".circle");
+
+const colors = [
+ "#b0b8ce"
+ ];
+
+circles.forEach(function (circle, index) {
+ circle.x = 1;
+ circle.y = 1;
+ circle.style.backgroundColor = colors[index % colors.length];
+});
+
+window.addEventListener("mousemove", function(e){
+ coords.x = e.clientX;
+ coords.y = e.clientY;
+
+});
+
+function animateCircles() {
+
+ let x = coords.x;
+ let y = coords.y;
+
+ circles.forEach(function (circle, index) {
+ circle.style.left = x - 10 + "px";
+ circle.style.top = y - 10 + "px";
+
+ circle.style.scale = (circles.length - index) / circles.length;
+
+ circle.x = x;
+ circle.y = y;
+
+ const nextCircle = circles[index + 1] || circles[0];
+ x += (nextCircle.x - x) * 0.08;
+ y += (nextCircle.y - y) * 0.08;
+ });
+
+ requestAnimationFrame(animateCircles);
+}
+
+animateCircles();
diff --git a/js/events.js b/js/events.js
new file mode 100644
index 0000000..3d4c4d8
--- /dev/null
+++ b/js/events.js
@@ -0,0 +1,23 @@
+fetch("https://api.github.com/users/fraujulian/events")
+ .then(response => response.json())
+ .then(events => {
+ let updates = document.getElementById("commits");
+ updates.innerHTML = "";
+ for (let i = 0; i < 10; i++) {
+ let singleCommit = document.createElement("div");
+ let commit = events[i].payload.commits[0];
+ if (commit != undefined) {
+ commit.sha = commit.sha.substr(0, 8);
+ singleCommit.innerHTML =
+ ``;
+ updates.appendChild(singleCommit);
+ }
+ }
+ });
\ No newline at end of file
diff --git a/js/github.js b/js/github.js
new file mode 100644
index 0000000..1efa4a0
--- /dev/null
+++ b/js/github.js
@@ -0,0 +1,84 @@
+ window.onload = function () {
+ let script = document.createElement("script");
+ script.src = "https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js";
+ document.body.appendChild(script);
+
+ const sortOnKey = (key, desc) => {
+ return (a, b) => {
+ a = a[key];
+ b = b[key];
+ return desc ? b - a : a - b;
+ }
+ };
+
+ String.prototype.replaceAt = function (index, replacement) {
+ return this.substr(0, index) + replacement + this.substr(index + replacement.length);
+ }
+ fetch("https://api.github.com/users/fraujulian/repos?per_page=999")
+ .then(response => response.json())
+ .then(projects => {
+ projects = projects.sort(sortOnKey("stargazers_count", true));
+ let projectsDiv = document.getElementById("github_projects");
+ projectsDiv.innerHTML = "";
+ projectsDiv.classList = "";
+ for (let i = 0; i < 6; i++) {
+ let projectDiv = document.createElement("div");
+ projectDiv.classList = "card hoverable";
+ let project = projects[i];
+ if (project != undefined) {
+ if (project.description == null)
+ project.description = "This project has no description";
+ if (project.language == null)
+ project.language = "No language stored!";
+ project.name = project.name.replaceAll('_', ' ').replaceAll('-', ' ');
+ projectDiv.innerHTML = `
+
+ `;
+ fetch(`https://raw.githubusercontent.com/${project.full_name}/master/README.md`)
+ .then(response => response.text())
+ .then(text => {
+ let converter = new showdown.Converter();
+ let html = converter.makeHtml(text);
+ let projectModal = document.createElement("div");
+ projectModal.classList = "modal github-modal hidden";
+ projectModal.innerHTML = `
+
+ `;
+
+ projectDiv.onclick = function () {
+ projectModal.classList.remove("hidden");
+ document.body.scrollTop = 0; // Safari
+ document.documentElement.scrollTop = 0; // Chrome Firefox IE Opera
+ document.body.style.opacity = 0.2;
+ };
+
+ projectModal.onclick = function (evt) {
+ if (evt.target == projectModal) {
+ projectModal.classList.add("hidden");
+ document.body.style.opacity = 1;
+ }
+ };
+ document.getElementsByTagName("html")[0].appendChild(projectModal);
+ });
+ projectsDiv.appendChild(projectDiv);
+ }
+ }
+ });
+ };
\ No newline at end of file
diff --git a/js/jquery-3.5.1.min.js b/js/jquery-3.5.1.min.js
new file mode 100644
index 0000000..c1f3c2a
--- /dev/null
+++ b/js/jquery-3.5.1.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML=" ",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML=" ",le.option=!!xe.lastChild;var ke={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0 rawListItems.length || slideIndex == 1) {
+ slideIndex = 2
+ }
+ rawListItems[slideIndex - 1].style.display = "block";
+ setTimeout(carousel, 1000);
+}
\ No newline at end of file