Compare commits
8 Commits
feature/cs
...
8b0a27358d
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b0a27358d | |||
| a077f2e95f | |||
| df15387f84 | |||
| 5ce36803b8 | |||
| fea7b92687 | |||
| ef777eb779 | |||
| e19a66ff62 | |||
| 5bff409db4 |
@@ -13,4 +13,5 @@
|
|||||||
<a href="/wiki/">wiki</a>
|
<a href="/wiki/">wiki</a>
|
||||||
<a href="/git/">git</a>
|
<a href="/git/">git</a>
|
||||||
<a href="/register.php">dołącz</a>
|
<a href="/register.php">dołącz</a>
|
||||||
|
<a href="/users.php">użytkownicy</a>
|
||||||
</header>
|
</header>
|
||||||
|
|||||||
69
news.php
Normal file
69
news.php
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
<?php
|
||||||
|
include 'header.php'
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1>> News </h1>
|
||||||
|
<article id="content">
|
||||||
|
|
||||||
|
<h2> 2025/10/09 </h2>
|
||||||
|
<p>
|
||||||
|
Introduced <a href="https://cloud.tylda.org">nextcloud</a> instance. We're slowly reaching linux and fediverse community promoting the initiative.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/10/08 </h2>
|
||||||
|
<p>
|
||||||
|
Introduced <a href="/users.php">users page</a>, which lists all user's web pages.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/10/03 </h2>
|
||||||
|
<p>
|
||||||
|
Work on interactive layout for web. Mostly css @media stuff.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/30 </h2>
|
||||||
|
<p>
|
||||||
|
Use SSH key as default way of logging in and other minor changes to the registration form.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/25 </h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>Basic gemini setup is done. We deicided to go with satellite server.</li>
|
||||||
|
<li>Wiki page.</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/20 </h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Smoorg joins tylda volunteering as admin and developer.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Registration form foundation
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h2> 2025/09/18 </h2>
|
||||||
|
<p>
|
||||||
|
v0id1st introduced basic setup
|
||||||
|
<ul>
|
||||||
|
<li>script to invite users</li>
|
||||||
|
<li>irc configuration</li>
|
||||||
|
<li>basic html webpage</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/07/22 </h2>
|
||||||
|
<p>
|
||||||
|
Early work is getting done. VPS hosted, zfs volumes per user.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
include 'footer.php'
|
||||||
|
?>
|
||||||
@@ -85,3 +85,4 @@ Poniższy formularz trafi do naszych administratorów, którzy go ocenią. Potra
|
|||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,14 @@ body {
|
|||||||
font-family: "Helvetica", "Arial", sans-serif;
|
font-family: "Helvetica", "Arial", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, h3, h4, h5, h6 {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
div.main-content {
|
div.main-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
20
users.php
Normal file
20
users.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
include 'header.php';
|
||||||
|
?>
|
||||||
|
<h1>> Users </h1>
|
||||||
|
<article id="content">
|
||||||
|
Lista użytkowników i linki do ich blogów
|
||||||
|
<ul>
|
||||||
|
<?php
|
||||||
|
$host=htmlspecialchars($_SERVER['SERVER_NAME']);
|
||||||
|
//$host="";
|
||||||
|
foreach (scandir("/home/") as $file) {
|
||||||
|
if (in_array($file, array('.', '..'))) continue;
|
||||||
|
echo "<li><a href=\"/~$file\">~$file</a></li>";
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
Reference in New Issue
Block a user