diff options
author | Andrew Godwin | 2022-11-17 19:21:00 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 17:33:09 -0700 |
commit | 291d7e404e12e1d017403242f8ed199046f0904c (patch) | |
tree | 89a60ff7f321537b6a58835aaa726f7e22ed09ba /templates/index.html | |
parent | 0851fbd1ec09b142608667bf90ee806e59cafb28 (diff) | |
download | takahe-291d7e404e12e1d017403242f8ed199046f0904c.tar.gz takahe-291d7e404e12e1d017403242f8ed199046f0904c.tar.bz2 takahe-291d7e404e12e1d017403242f8ed199046f0904c.zip |
Logged out experience, config, and profiles
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/index.html b/templates/index.html index 9e09a43..79f81cf 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,12 +2,14 @@ {% block title %}Welcome{% endblock %} -{% block content %} - <nav> - <a href="/" class="selected">Home</a> - </nav> +{% block content %} + <div class="about"> + <img class="banner" src="{{ config.site_banner }}"> + {{ config.site_about|safe|linebreaks }} + </div> + <h2>People</h2> {% for identity in identities %} - <a href="{{ identity.urls.view }}">{{ identity }}</a> + {% include "activities/_identity.html" %} {% endfor %} {% endblock %} |