blob: 5c2c206c0c8b1e565714fc8920335efad7f94a12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "base.html" %}
{% block head %}
{# Since the background image is declared in the CSS, we can improve
loading times by instructing the browser to start loading the image
*before* it has even parsed the CSS. #}
<link rel="preload" as="image" href="/static/hero.jpeg">
<link rel="stylesheet" href="/static/index.css">
{% endblock %}
{% block content %}
<div class="hero">
<h1 class="hero__title">Blind</h1>
<p class="hero__subtitle">An epic guild for epic gamers</p>
</div>
{% endblock %}
|