diff options
| author | 2018-02-21 09:55:25 +0000 | |
|---|---|---|
| committer | 2018-02-21 09:55:25 +0000 | |
| commit | 8d6faeebfa3324ab77342b8f534779a0d300ae4c (patch) | |
| tree | a41b406ef65772c9e7cd18bb7da2e67d09018a0b | |
| parent | Add warning about pre-release-ness to base template (diff) | |
Basic main page hero
Diffstat (limited to '')
| -rw-r--r-- | templates/main/base.html | 4 | ||||
| -rw-r--r-- | templates/main/index.html | 24 | 
2 files changed, 26 insertions, 2 deletions
| diff --git a/templates/main/base.html b/templates/main/base.html index 66bf7e5f..a1372747 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -13,7 +13,7 @@  </head>  <body>  {% include "main/navigation.html" %} - +{% if current_page != "index" %}  <div class="uk-container uk-section">      <div class="uk-alert-danger" uk-alert>          <p> @@ -22,7 +22,7 @@          </p>      </div>  </div> - +{% endif %}  {% block content %}{% endblock %}  </body>  </html> diff --git a/templates/main/index.html b/templates/main/index.html index 48ca8f12..646f2eab 100644 --- a/templates/main/index.html +++ b/templates/main/index.html @@ -1,4 +1,28 @@  {% 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;" /> +        <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> + +<div class="uk-container uk-section"> +    <div class="uk-alert-danger" uk-alert> +        <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> +</div>  {% endblock %}
\ No newline at end of file | 
