From 7f25427916a10093152a02a933783eaf987ba0a9 Mon Sep 17 00:00:00 2001 From: Grzegorz Matoga Date: Fri, 25 Jul 2025 02:58:46 +0200 Subject: [PATCH] feat: add initial HTML and CSS files for Gitea Pages --- index.html | 31 +++++++++++++++++++++++++++++++ style.css | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..b609351 --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + Hello from Gitea Pages! + + + +
+

🎉 Hello from Gitea Pages!

+

This page is served by Codeberg Pages Server from your Gitea repository.

+

Built by Gitea Actions and deployed automatically! 🚀

+ +
+

How it works:

+
    +
  • Push to the pages branch
  • +
  • Pages server automatically serves your content
  • +
  • Access via: username.eurekin.pl or eurekin.pl/username/repo
  • +
+
+ +
+

🐳 Docker Image Info

+

Pull our Docker image:

+
docker pull git.eurekin.pl/eurekin.pl_cloud/hello-gitea:latest
+
+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..f51ed99 --- /dev/null +++ b/style.css @@ -0,0 +1,50 @@ +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; + line-height: 1.6; + margin: 0; + padding: 20px; + background: #f5f5f5; +} + +.container { + max-width: 800px; + margin: 0 auto; + background: white; + padding: 2rem; + border-radius: 10px; + box-shadow: 0 2px 10px rgba(0,0,0,0.1); +} + +h1 { + color: #333; + border-bottom: 3px solid #4CAF50; + padding-bottom: 10px; +} + +code { + background: #f4f4f4; + padding: 2px 6px; + border-radius: 3px; + font-family: 'Courier New', monospace; +} + +pre { + background: #2d2d2d; + color: #f8f8f2; + padding: 1rem; + border-radius: 5px; + overflow-x: auto; +} + +.info, .docker-info { + margin-top: 2rem; + padding: 1rem; + background: #e8f5e9; + border-radius: 5px; + border-left: 4px solid #4CAF50; +} + +.docker-info { + background: #e3f2fd; + border-left-color: #2196F3; +} \ No newline at end of file