Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28ff6a9fdc | ||
|
|
2ea01a8824 | ||
|
|
fe775a5a7e | ||
|
|
33eb9d7748 |
+1
-1
@@ -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
@@ -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
@@ -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;
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user