diff options
| author | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-06 01:50:05 +0000 | 
|---|---|---|
| committer | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-06 01:50:05 +0000 | 
| commit | 7cc501c5efde9da7c5e4dbfd854cdeb80a8e0ce9 (patch) | |
| tree | d44c8d2ece059ba9e3f497b95817380e0d19cf1b /templates/index.html | |
| parent | 287034916bef5878a5565aec4141216fa6f133e6 (diff) | |
| download | eda.gay-7cc501c5efde9da7c5e4dbfd854cdeb80a8e0ce9.tar.gz eda.gay-7cc501c5efde9da7c5e4dbfd854cdeb80a8e0ce9.zip | |
added twitter on index page
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 55 | 
1 files changed, 26 insertions, 29 deletions
| diff --git a/templates/index.html b/templates/index.html index 93138d0..d79743b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,31 +1,28 @@  {% extends "template.html" %}  {% block content %} -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> -   <p>Haiiiiiiii, this is the index page uwu</p> - {% endblock %}
\ No newline at end of file +    <aside> +        <section id="recent thoughts"> +            <h4>recent thoughts:</h4> +            <ul> +                {% for id_, title in featured_thoughts %} +                    <li><a href={{"/thought?id=%i" % id_}}>title</a></li> +                {% endfor %} +            </ul> +        </section> +    </aside> +    {{markdown|safe}} +    {% if tweets != None %} +        <section id="recent_tweets"> +            <h1>recent tweets</h1> +            <ul> +                {% for url, text in tweets %} +                    {% if text == None %} +                        <li><a href={{url}}>[image only]</a></li> +                    {% else %} +                        <li><a href={{url}}>{{text}}</a></li> +                    {% endif %} +                {% endfor %} +            </ul> +        </section> +    {% endif %} +{% endblock %}
\ No newline at end of file | 
