initial commit
This commit is contained in:
commit
6727c693af
|
@ -0,0 +1,2 @@
|
||||||
|
*.html
|
||||||
|
!*.j2.html
|
|
@ -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>
|
|
@ -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;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
|
@ -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 University’s <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 %}
|
|
@ -0,0 +1 @@
|
||||||
|
{% extends 'base.j2.html' %}
|
Loading…
Reference in New Issue