Uses Django now because Flask is insecure in prod

This commit is contained in:
2025-10-22 10:57:48 +01:00
parent ddf4caba62
commit 6c5453ad17
25 changed files with 112 additions and 204 deletions

View File

@@ -0,0 +1,9 @@
<hr/>
<div id="footer-links">
<a href="https://git.javalsai.tuxcord.net/deadvey/tuxcord.net">Source Code</a>
/
<a href="https://javalsai.tuxcord.net">Gitea, Hosted by Javalsai</a>
/
<a href="https://envs.net">Website inspired by envs.net</a>
</div>

View File

@@ -0,0 +1,5 @@
{% load static %}
<meta charset="UTF-8" />
<link rel="stylesheet" href="{% static 'index.css' %}">
<title>Tuxcord.NET</title>

View File

@@ -0,0 +1,13 @@
<pre>
<a href="/" class="no-spin">
__ __ __
---------/\ \__ /\ \ /\ \__
---------\ \ ,_\ __ __ __ _ ___ ___ _ __ \_\ \ ___ __\ \ ,_\
----------\ \ \/ /\ \/\ \/\ \/'\ /'___\ / __`\/\`'__\/'_` \ /'_ `\ /'__`\ \ \/
-----------\ \ \_\ \ \_\ \/> &lt;//\ \__//\ \L\ \ \ \//\ \L\ \ __/\ \/\ \/\ __/\ \ \_
------------\ \__\\ \____//\_/\_\ \____\ \____/\ \_\\ \___,_\/\_\ \_\ \_\ \____\\ \__\
-------------\/__/ \/___/ \//\/_/\/____/\/___/ \/_/ \/__,_ /\/_/\/_/\/_/\/____/ \/__/</a>
A friendly Linux community.
</pre>

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html>
<head>
{% include 'head.html' %}
</head>
<body>
<header>
{% include 'header.html'%}
</header>
<b><u>Services we provide:</u></b>
<ul>
<li>
<a href="https://mastodon.tuxcord.net">Mastodon</a> (<a href='/mastodon-status'>Status</a>)
</li>
<li>
<a href="https://git.javalsai.tuxcord.net">Gitea</a>
</li>
<li>
<a href="https://redlib.tuxcord.net">Redlib</a>
</li>
<li>
<a href="/mc">Minecraft</a>
</li>
<li>
Matrix server: matrix.tuxcord.net (please ask deadvey for access)
</li>
</ul>
<b><u>Join us:</u></b>
<ul>
Our Matrix and Discord are bridged, irc is not and is not very active.
<li>
<a href="https://matrix.to/#/#TuxCord:matrix.org">Matrix</a>
</li>
<li>
<a href="https://discord.gg/SPHymEDytw">Discord</a>
</li>
<li>
<a href="irc://irc.tuxcord.net">irc.tuxcord.net</a>
</li>
</ul>
<details>
<summary>
<u><b>Members:</b></u>
</summary>
<ul>
<li><u>pickzelle (Founder)</u></li>
<li>bruhhhhh😘</li>
<li><a href="https://git.javalsai.tuxcord.net/danmax">Danmax</a></li>
<li><a href="https://deadvey.tuxcord.net">DeaDvey</a></li>
<li><a href="https://github.com/ErrorNoInternet">ErrorNoInternet</a></li>
<li>grialion</li>
<li><a href="https://javalsai.tuxcord.net">Javalsai</a></li>
<li><a href="https://decompil.in/">Spamix</a></li>
</ul>
</details>
<div class="tuxcord-image">
<pre>
{{ ascii_penguin|safe }}
</pre>
</div>
</body>
<footer>
{% include 'footer.html' %}
</footer>
</html>

46
tuxcord/templates/mc.html Normal file
View File

@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
{% include 'head.html' %}
</head>
<body>
<header>
{% include 'header.html'%}
</header>
Name: Tuxcord-MC<br/>
IP/Server Address: mc.tuxcord.net<br/>
Version: 1.12.8<br/>
The server has a whitelist, so join our <a href="https://discord.gg/SPHymEDytw">Discord</a>, <a href="https://matrix.to/#/!BEyFZOZpWRoRrhRJbp:matrix.org">Matrix</a> or <a href="irc://irc.tuxcord.net">irc.tuxcord.net</a> and ask<br/>if you can join in the #.minecraft channel.<br/>
The server is cracked, so as to prevent bots and spam, we also have a registration system.<br/>
</pre>
<br/>
Rules:<br/>
<ol>
<li>
Joking around is Ok, but no directed hate speech.
</li>
<li>
Greifing and killing others is permitted.
</li>
<li>
No attempting to crash server or disrupt other people's gameplay with lag machines and the like.
</li>
<li>
While greifing is permitted in most cases, do not greif the main end island
</li>
</ol>
<div class="tuxcord-image">
<pre>
{{ ascii_penguin|safe }}
</pre>
</div>
</body>
<footer>
{% include 'footer.html' %}
</footer>
</html>