blob: 81ef4aacb05e11a3f4ef2ee5976497369f3104dc (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{% extends "base.html" %}
{% block extrahead %}
<link
rel="stylesheet"
href="{{ 'overrides/assets/stylesheets/home.css' | url }}" />
{% endblock %}
{% block tabs %}
{{ super() }}
<section class="hero">
<div class="md-grid md-typeset hero-container">
<div class="hero-content">
<div class="hero-title">
<img src="images/logo.png" draggable="false" />
<h1>Homer</h1>
</div>
<p>
A dead simple static <strong>HOM</strong>epage for your serv<strong>ER</strong>
to keep your services on hand, from a simple <code>yaml</code> configuration file.
</p>
<a
href="{{ page.next_page.url | url }}"
title="{{ page.next_page.title | striptags }}"
class="md-button md-button-primary"
>
Get started
</a>
<a
href="{{ config.repo_url }}"
title="{{ lang.t('source.link.title') }}"
class="md-button"
>
Go to GitHub
</a>
</div>
<img class="hero-image" src="images/screenshot.png" draggable="false" />
</div>
</section>
<div>
TODO!
</div>
{% endblock %}
{% block site_nav %}{% endblock %}
{% block content %}{% endblock %}
{% block footer %}{% endblock %}
|