aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'bh20simplewebuploader/templates/home.html')
-rw-r--r--bh20simplewebuploader/templates/home.html29
1 files changed, 24 insertions, 5 deletions
diff --git a/bh20simplewebuploader/templates/home.html b/bh20simplewebuploader/templates/home.html
index 77d2fb6..be948f6 100644
--- a/bh20simplewebuploader/templates/home.html
+++ b/bh20simplewebuploader/templates/home.html
@@ -22,9 +22,27 @@
or <a href="/apidoc">REST API</a>. For more
information see the <a href="/about">FAQ!</a>.
</p>
- <section id="map_view" class="map">
- <div id="mapid"></div>
- </section>
+
+ <section class="flex-container">
+ <div id="map_view" class="map">
+ <div id="mapid"></div>
+ </div>
+ <div id="twitter-feed">
+ <ul>
+ {% for tweet in tweets|sort(reverse=true, attribute="timeposted")%}
+ <li>
+ <p class="tweet">
+ {{ tweet.tweet|urlize(40, target="_blank") }} <br/>
+ by {{ tweet.author }}
+ </p>
+ <small class="timeposted">
+ {{ tweet.timeposted }}
+ </small>
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+ </section>
<a href="https://projectredcap.org/"><img class="img-right" src="static/image/REDCap.png" /></a>
<p>
@@ -73,10 +91,11 @@
URI's</a>
for <a href="https://en.wikipedia.org/wiki/Wikipedia:Disambiguation">disambiguation</a>
and machine readable metadata. For examples of
- use, see the <a href="/blog">BLOG</a>.
+ use, see the <a href="/blog">docs</a>.
</p>
</div>
- </section>
+ </section>
+
{% include 'footer.html' %}