summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-24 12:46:34 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-24 12:46:34 -0700
commit7d888964614ce765c7158b13b9612c4c7f408793 (patch)
tree7c36e7dbffcf62561d2c43e7c5e41e89e86e790e
parent67933574b0cb1ef3ad6391fb87d16e9720965279 (diff)
downloadhatecomputers.club-7d888964614ce765c7158b13b9612c4c7f408793.tar.gz
hatecomputers.club-7d888964614ce765c7158b13b9612c4c7f408793.zip
about page
-rw-r--r--main.go5
-rw-r--r--static/css/club.css4
-rw-r--r--templates/about.html21
-rw-r--r--templates/base.html2
-rw-r--r--templates/home.html3
5 files changed, 27 insertions, 8 deletions
diff --git a/main.go b/main.go
index e0f3e55..e92f777 100644
--- a/main.go
+++ b/main.go
@@ -60,8 +60,7 @@ func main() {
log.Fatal(err)
}
}()
- }
- runForever := make(chan struct{})
- <-runForever
+ select {}
+ }
}
diff --git a/static/css/club.css b/static/css/club.css
index 47f8ea0..c629cab 100644
--- a/static/css/club.css
+++ b/static/css/club.css
@@ -17,7 +17,7 @@
align-items: center;
justify-content: space-around;
gap: 10px;
- max-width: 600px;
+ max-width: 500px;
min-width: 300px;
line-break: anywhere;
}
@@ -44,5 +44,5 @@
}
.about {
- flex: 2;
+ flex: 3;
}
diff --git a/templates/about.html b/templates/about.html
new file mode 100644
index 0000000..d1a8c7e
--- /dev/null
+++ b/templates/about.html
@@ -0,0 +1,21 @@
+{{ define "content" }}
+
+<p>hatecomputers.club is a club for those that, well, <i>hate computers!</i></p>
+<br>
+<p>we maintain a little homelab mesh for our own little computing community! as a member you'll have access to split-zone dns for our intranet as well as ownership to "*.USER.hatecomputers.club." for which you can do almost anything. we host, and plan to host, all kinds of stuff for each other :).</p>
+<br>
+<p>you may align with us if you believe any (or all) of the following:</p>
+<br>
+<ul>
+ <li>computers and the internet in the hands of capitalism have caused potentially irreversible effects on our society and the wellbeing of humans.</li>
+ <li>computers and the data associated to, or describing of, a human or their activities should be protected with utmost security.</li>
+ <li>computers and the integration of automation in most human jobs should be implemented with heavy distrust of the systems developed and account for the well-being of any affected persons. especially when pertaining to "generative technologies".</li>
+ <li>the security and maintenance responsiblities of computers and operation thereof, when having direct implications on an individual's livelihood, or the public good, (banking, work, payments, etc.), should fall on the groups building such systems and not on the individual users of such systems.</li>
+ <li>in addition, the acts of tampering, modification, and "hacking" a computer, as long as said actions are served in good intentions and the benefit of the public's best interests and not private capital, should not be punishable and instead praised or rewarded in relation to the scope of the information, methodology, impact, and results obtained.</li>
+ <li>computers and systems should not have been corporatized and should have been, and continue to be, completely open to the user and researchers to develop upon.</li>
+ <li>the acts of tampering, modification, and "hacking" a computer, as long as said actions are served in the public's best interests and not private capital, should not be punishable and instead praised or rewarded.</li>
+ <li>computers, software, and technological advancements need to serve public interests first and foremost, and not private capital.</li>
+ <li>among others...</li>
+</ul>
+
+{{ end }}
diff --git a/templates/base.html b/templates/base.html
index 89d6dd2..036a748 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -30,8 +30,6 @@
<span> | </span>
<a href="/guestbook">guestbook.</a>
<span> | </span>
- <a href="/webring">webring.</a>
- <span> | </span>
{{ if .User }}
<a href="/dns">dns.</a>
<span> | </span>
diff --git a/templates/home.html b/templates/home.html
index 76bbc6a..2d913e6 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -10,7 +10,8 @@
<div class="about">
<div>name: {{ $user.Username }}</div>
<div>pronouns: {{ $user.Pronouns }}</div>
- <div><a href="{{ $user.Website }}">{{ $user.Website }}</a></div>
+ <div>location: {{ $user.Location }}</div>
+ <div>www: <a href="{{ $user.Website }}">{{ $user.Website }}</a></div>
<div class="club-bio">{{ $user.Bio }}</div>
</div>
</div>