blob: 6c0f8e9562076b81c98d376a6a1112b1752f187b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "main/base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<div class="uk-section uk-section-primary">
<div class="uk-container uk-text-center">
<img src="/static/logos/logo_banner.png" style="height: 150px; margin: auto;" />
<div class="uk-container uk-container-small uk-text-meta">
<p>
Please note: this site is under construction. What you see now may be vastly different
from the final project state. Feel free to chat to us on Discord if you're curious!
</p>
</div>
<hr class="uk-divider-icon" />
<p>
Spicy jalapeno bacon ipsum dolor amet flank elit tri-tip swine reprehenderit tail
nostrud biltong officia eu. Irure shankle cupidatat shank filet mignon drumstick
tail dolore jowl flank velit magna. Est hamburger sirloin enim nisi, dolore sint
sed et adipisicing ut laboris bresaola pig cow. Nisi tongue ex fatback. Culpa
elit venison exercitation hamburger dolor do andouille consequat meatloaf. Eu
landjaeger turducken exercitation. Shoulder adipisicing proident cow, short
loin tail bacon sausage strip steak jerky short ribs tri-tip jowl rump.
</p>
</div>
</div>
{% endblock %}
|