diff --git a/src/snek/templates/base.html b/src/snek/templates/base.html index fc9cf38..3f795b5 100644 --- a/src/snek/templates/base.html +++ b/src/snek/templates/base.html @@ -10,6 +10,7 @@ + {% block title %}Snek chat by Molodetz{% endblock %} @@ -34,6 +35,7 @@
{% block main %} {% endblock %} + {% include "sandbox.html" %}
diff --git a/src/snek/templates/index.html b/src/snek/templates/index.html index 417b75f..c052947 100644 --- a/src/snek/templates/index.html +++ b/src/snek/templates/index.html @@ -1,133 +1,49 @@ - - - - - - - - - - + Snek – The Ultimate Web Community + - - -
-

Snek

-

The Ultimate Web Community for Devs, Testers & AI Enthusiasts

- Login - Register -
- -
- -
-
-

File Sharing

-
    -
  • SFTP storage with your Snek credentials
  • -
  • WebDAV support – same login
  • -
-
- -
-

Git Repositories

-
    -
  • Configure repos for any official Git client
  • -
  • Instant setup, push & pull
  • -
-
- -
-

AI Powerhouse

-
    -
  • Chat with free & commercial AIs
  • -
  • Generate AI-powered images
  • -
  • Build your own AI bots in <5 minutes (copy/paste example)
  • -
-
- -
-

Dev & Terminal

-
    -
  • Ubuntu web terminal in-browser
  • -
  • Full profile & permissions management
  • -
-
- -
-

Chat & Media

-
    -
  • Upload any file type in chat
  • -
  • Rich media support (audio, video, images…)
  • -
  • Direct messaging with other users
  • -
-
- -
-

Privacy & Community

-
    -
  • No logging—never even your IP
  • -
  • No email required to sign up
  • -
  • Multi-national, open community
  • -
  • Hacking encouraged!
  • -
-
- -
-

Customization & Deployment

-
    -
  • Full layout & theme customization
  • -
  • Install as a PWA on your phone
  • -
  • Optionally self-host: pip install snek, zero config
  • -
-
-
- -
-

Ready to join?

-

No email. No logs. Just sign up, pick a username, and dive in!

- Sign Up Now -
- -
-

Self-Host in Seconds

-

Just run:

-
+
+

Snek

+

The Ultimate Web Community for Devs, Testers & AI Enthusiasts

+ Login + Register +
+
+
+
+

File Sharing

+
    +
  • SFTP storage with your Snek credentials
  • +
  • WebDAV support – same login
  • +
+
+
+

Git Repositories

+
    +
  • Configure repos for any official Git client
  • +
  • Instant setup, push & pull
  • +
+
+
+

AI Powerhouse

+
    +
  • Chat with free & commercial AIs
  • +
  • Generate AI-powered images
  • +
  • Build your own AI bots in <5 minutes (copy/paste example)
  • +
+
+
+

Dev & Terminal

+
    +
  • Ubuntu web terminal in-browser
  • +
  • Full profile & permissions management
  • +
+
+
+

Chat & Media

+
    +
  • Upload any file type in chat
  • +
  • Rich media support (audio, video, images…)
  • +
  • Direct messaging with other users
  • +
+
+
+

Privacy & Community

+
    +
  • No logging—never even your IP
  • +
  • No email required to sign up
  • +
  • Multi-national, open community
  • +
  • Hacking encouraged!
  • +
+
+
+

Customization & Deployment

+
    +
  • Full layout & theme customization
  • +
  • Install as a PWA on your phone
  • +
  • Optionally self-host: pip install, zero config
  • +
+
+
+
+

Ready to join?

+

No email. No logs. Just sign up, pick a username, and dive in!

+ Sign Up Now +
+
+

Self-Host in Seconds

+

Just run:

+
 pip install git+https://retoor.molodetz.nl/retoor/snek.git
 snek serve
-      
-

No configuration required—it's that simple.

-
- -
- -
-

© 2025 Snek – Join our global community of developers, testers & AI enthusiasts.

-
- - - - + ctx.globalAlpha = 1; + } + function animate(time) { + drawStars(time || 0); + requestAnimationFrame(animate); + } + function updateStars() { + const count = Math.floor(w * h / 4500); + createStars(count); + } + window.addEventListener('resize', function() { + resize(); + updateStars(); + }); + resize(); + updateStars(); + animate(); +})(); + +