initial commit

This commit is contained in:
Kay Faraday 2024-08-03 22:49:09 -07:00
commit 6727c693af
7 changed files with 46 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.html
!*.j2.html

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
index.html: index.j2.html
j2 $< > $@

12
base.j2.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<head>
<meta charset=utf-8>
<title>{% block title %}{% endblock title %}</title>
<meta name=viewport content="width=device-width, initial-scale=1.0">
<link rel=icon href="/favicon.png">
<link rel=stylesheet href="/common.css">
<body>
<h1>{{ self.title() }}</h1>
<main>
{% block content %}{% endblock content %}
</main>

10
common.css Normal file
View File

@ -0,0 +1,10 @@
body {
font-family: Verdana, Segoe, sans-serif;
max-width: 35em;
margin: 0 auto;
padding-left: 1rem;
padding-right: 1rem;
}
h1 {
text-align: center;
}

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

19
index.j2.html Normal file
View File

@ -0,0 +1,19 @@
{% extends 'base.j2.html' %}
{% block title %}Freak University{% endblock title%}
{% block content %}
<p>Welcome to Freak University! There used to be a public fediverse instance here, but not anymore. However, we are working on restoring some of the affiliated services, and those restored are listed below.</p>
<ul>
<li><a href="https://ask.freak.university">Freak University Ask</a>, our anonymous question/answer site
<li>The Freak University <a href="https://lab.freak.university">Computer Lab</a>, our code sharing site
<li>The Freak University <a href="https://mural.freak.university">Mural</a>, a canvas site like r/place
<li><a href="https://badge.freak.university">pronouns fu</a>, our pronouns/preferred names sharing site
<li>The Freak University <a href="https://theater.freak.university">Theater</a>, our synchronized watch party site
<li><a href="https://emojos.freak.university">emojos.freak.university</a>, a custom emoji viewer for fediverse instances
<li>Freak Universitys <a href="https://takahe.freak.university/">Takahē instance</a>, used by admins only for administrative updates
</ul>
<h2>Planned services</h2>
<ul>
<li>A wiki editable only by admins, for documenting rules, history, and donation information.
</ul>
{% endblock content %}

1
rules.j2.html Normal file
View File

@ -0,0 +1 @@
{% extends 'base.j2.html' %}