diff options
author | Evan Steinkerchner <esteinkerchner@gmail.com> | 2022-03-22 18:22:16 -0400 |
---|---|---|
committer | Evan Steinkerchner <esteinkerchner@gmail.com> | 2022-03-22 18:22:16 -0400 |
commit | 828582351780582558cb0f4a475ef9eeb4dc1299 (patch) | |
tree | ec165822c987924f30e2b8bdcebf3729ec772227 /docs/overrides/home.html | |
parent | 6f9a74ddcf4833e50df4033ae4291d718af784d9 (diff) | |
download | homer-828582351780582558cb0f4a475ef9eeb4dc1299.tar.gz homer-828582351780582558cb0f4a475ef9eeb4dc1299.tar.zst homer-828582351780582558cb0f4a475ef9eeb4dc1299.zip |
Created new custom home page, moved Getting started to its own page, fixed requirements.txt, added docs/README.md
Diffstat (limited to 'docs/overrides/home.html')
-rw-r--r-- | docs/overrides/home.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/overrides/home.html b/docs/overrides/home.html new file mode 100644 index 0000000..81ef4aa --- /dev/null +++ b/docs/overrides/home.html | |||
@@ -0,0 +1,49 @@ | |||
1 | {% extends "base.html" %} | ||
2 | |||
3 | {% block extrahead %} | ||
4 | <link | ||
5 | rel="stylesheet" | ||
6 | href="{{ 'overrides/assets/stylesheets/home.css' | url }}" /> | ||
7 | {% endblock %} | ||
8 | |||
9 | {% block tabs %} | ||
10 | {{ super() }} | ||
11 | |||
12 | <section class="hero"> | ||
13 | <div class="md-grid md-typeset hero-container"> | ||
14 | <div class="hero-content"> | ||
15 | <div class="hero-title"> | ||
16 | <img src="images/logo.png" draggable="false" /> | ||
17 | <h1>Homer</h1> | ||
18 | </div> | ||
19 | <p> | ||
20 | A dead simple static <strong>HOM</strong>epage for your serv<strong>ER</strong> | ||
21 | to keep your services on hand, from a simple <code>yaml</code> configuration file. | ||
22 | </p> | ||
23 | <a | ||
24 | href="{{ page.next_page.url | url }}" | ||
25 | title="{{ page.next_page.title | striptags }}" | ||
26 | class="md-button md-button-primary" | ||
27 | > | ||
28 | Get started | ||
29 | </a> | ||
30 | <a | ||
31 | href="{{ config.repo_url }}" | ||
32 | title="{{ lang.t('source.link.title') }}" | ||
33 | class="md-button" | ||
34 | > | ||
35 | Go to GitHub | ||
36 | </a> | ||
37 | </div> | ||
38 | <img class="hero-image" src="images/screenshot.png" draggable="false" /> | ||
39 | </div> | ||
40 | </section> | ||
41 | |||
42 | <div> | ||
43 | TODO! | ||
44 | </div> | ||
45 | {% endblock %} | ||
46 | |||
47 | {% block site_nav %}{% endblock %} | ||
48 | {% block content %}{% endblock %} | ||
49 | {% block footer %}{% endblock %} | ||