commit 599fccda6b401843fbc1ac0bd6599e8cc27d6ad3 Author: Finn Dane Date: Wed May 17 22:12:39 2023 +0200 initial commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..06c7414 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,20 @@ +kind: pipeline +type: docker +name: image + +steps: + - name: build + image: plugins/docker + settings: + registry: registry.finndane.nl + username: + from_secret: docker_username + password: + from_secret: docker_password + repo: registry.finndane.nl/finn-dane/homepage + tags: + - latest + +trigger: + branch: + - master diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2ffeb2a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM httpd:2.4-alpine3.18 + +COPY ./src /usr/local/apache2/htdocs/ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..c4ca71d --- /dev/null +++ b/src/index.html @@ -0,0 +1,95 @@ + + + + Finn's Homepage + + + + +
+ + + + + + + + + + + + + + + + + + +
+ profile picture +
+

Finn's Homepage

+ +

My name is Finn Dane I am from the Netherlands and as you can probably see, I hate webdesign.

+
+
+
+

I am interested in all kinds of fields, but Mainly lower level stuff, hence the main languages I use are C++ and some C.

+

While I hate webdesign, which you can see with this purely HTML 4.01 based site, I am currently forced to do some web for school and for that I razor.

+

Other than programming I am somewhat interested in networking and have my own "homelab" (The Shitlab)

+
+
+

Contact / Socials

+ + + + + + + + + + + + + + + +
+ + + + + + +
Discord: Finn_Dane#0001
+
+ + + + + + +
GitHub: FinnDane
+
+ + + + + + +
Twitter: @Finn_Dane
+
+ + + + + + +
Email: mail@finndane.nl
+
+
+
+
+ + \ No newline at end of file diff --git a/src/media/picture.gif b/src/media/picture.gif new file mode 100644 index 0000000..e71a626 Binary files /dev/null and b/src/media/picture.gif differ