diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml
new file mode 100644
index 0000000..d67ac59
--- /dev/null
+++ b/.gitea/workflows/demo.yaml
@@ -0,0 +1,19 @@
+name: Gitea Actions Demo
+run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
+on: [push]
+
+jobs:
+ Explore-Gitea-Actions:
+ runs-on: ubuntu-latest
+ steps:
+ - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
+ - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
+ - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
+ - name: Check out repository code
+ uses: actions/checkout@v3
+ - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
+ - run: echo "🖥️ The workflow is now ready to test your code on the runner."
+ - name: List files in the repository
+ run: |
+ ls ${{ gitea.workspace }}
+ - run: echo "🍏 This job's status is ${{ job.status }}."
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..4d5293a
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,12 @@
+# Use the official nginx image as the base
+FROM nginx:alpine
+
+# Remove the default nginx static files
+RUN rm -rf /usr/share/nginx/html/*
+
+# Copy the content of /srv directory to the nginx serving directory
+# Note: You need to have the /srv directory with your files on the Docker host
+COPY /srv /usr/share/nginx/html
+
+# Start nginx in the foreground
+CMD ["nginx", "-g", "daemon off;"]
\ No newline at end of file
diff --git a/README.md b/README.md
index aec1d30..d9eae99 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d
## Usage
```html
-
+
-
+
```
diff --git a/js/template-engine.js b/srv/js/template-engine.js
similarity index 100%
rename from js/template-engine.js
rename to srv/js/template-engine.js
diff --git a/styles/boxes.css b/srv/styles/boxes.css
similarity index 100%
rename from styles/boxes.css
rename to srv/styles/boxes.css
diff --git a/styles/main.css b/srv/styles/main.css
similarity index 100%
rename from styles/main.css
rename to srv/styles/main.css
diff --git a/styles/tables.css b/srv/styles/tables.css
similarity index 100%
rename from styles/tables.css
rename to srv/styles/tables.css
diff --git a/styles/template-engine.css b/srv/styles/template-engine.css
similarity index 100%
rename from styles/template-engine.css
rename to srv/styles/template-engine.css
diff --git a/styles/theme-override.css b/srv/styles/theme-override.css
similarity index 100%
rename from styles/theme-override.css
rename to srv/styles/theme-override.css