Compare commits

..
4 Commits
Author SHA1 Message Date
futile 28ff6a9fdc docs: correctly name cloned dir in setup 2026-07-24 10:33:20 +01:00
futile 2ea01a8824 home: link to privacy/terms history 2026-07-24 10:33:07 +01:00
futile fe775a5a7e home: amend terms 2026-07-24 10:30:23 +01:00
futile 33eb9d7748 home: add a last updated timestamp to terms & privacy 2026-07-24 10:10:59 +01:00
4 changed files with 28 additions and 6 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
- `sudo su - admin`
3. use the system setup script, and log out
- `sudo dnf install git -y`
- `git clone https://git.atom.town/atom/town`
- `git clone https://git.atom.town/atom/town && mv town atom.town`
- `./atom.town/scripts/system-setup.sh`
- `exit`
4. log in again, populate the `.env` and start everything up
+2 -2
View File
@@ -14,11 +14,11 @@
<img src="assets/logo.avif" class="logo" />
<div class="flex flex-col gap-8 mt-4">
<p class="font-light">hello, and welcome to atom.town. here, you will be at home.</p>
<div class="flex flex-col">
<div class="flex flex-col w-fit">
<a href="https://mail.atom.town" target="_blank" class="font-normal pop big">webmail</a>
<a href="https://git.atom.town" target="_blank" class="font-normal pop big">git</a>
</div>
<div class="flex flex-col">
<div class="flex flex-col w-fit">
<a href="terms-privacy.html" class="font-normal pop big">terms & privacy</a>
<a href="setup.html" class="font-normal pop big">setup</a>
</div>
+20 -1
View File
@@ -31,7 +31,7 @@ ul {
/* tailwind lite */
:root { --space: 4px; }
.flex { display: flex; width: fit-content; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: calc(var(--space) * 2); }
@@ -42,6 +42,13 @@ ul {
.self-start { align-self: flex-start; }
.justify-between { justify-content: space-between; }
.w-fit { width: fit-content; }
.items-center { align-items: center; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-heavy { font-weight: 500; }
@@ -54,6 +61,13 @@ ul {
}
/* tailwind lite */
.small {
font-size: 16px;
@media (max-width: 1024px) {
font-size: 32px;
}
}
.big {
font-size: 24px;
@media (max-width: 1024px) {
@@ -70,6 +84,11 @@ ul {
transform: scale(1.25);
}
.hover {
text-decoration: underline dotted;
text-decoration-thickness: 1px;
}
.logo {
object-fit: contain;
align-self: flex-start;
+5 -2
View File
@@ -18,7 +18,7 @@
<h2 class="font-heavy big">terms</h2>
<ul class="font-light">
<li>you agree that you will not use atom.town in any way that would negatively impact other users, nor anyone else.</li>
<li>you agree that for any projects you host (or contribute to) on atom.town, llm usage will be sparse. largely unsupervised or unreviewed code is strongly prohibited.</li>
<li>you agree that for any projects you host (or contribute to) on atom.town, llm usage will be <span title="while atom.town welcomes llms as a useful tool, they should be utilised sparingly, as it is all too easy to fall into the pit of overuse." class="hover">sparse</span>. largely unsupervised or unreviewed code is strongly prohibited.</li>
</ul>
</div>
<div class="flex flex-col gap-2">
@@ -29,7 +29,10 @@
<li>atom.town does not share, nor ever will share any information it collects with any third parties, beyond what is absolutely necessary to run the service.</li>
</ul>
</div>
<a href="/" class="self-start font-normal pop">← back</a>
<div class="flex justify-between items-center">
<a href="/" class="self-start font-normal pop">← back</a>
<p class="font-extralight small">updated 2026-07-24 (<a href="https://git.atom.town/atom/town/commits/branch/main/home/terms-privacy.html" target="_blank" class="small">history</a>)</p>
</div>
</div>
</body>
</html>