Skip to content

Instantly share code, notes, and snippets.

@ryanleeallred
Created July 13, 2022 09:05
Show Gist options
  • Save ryanleeallred/afcc33585e1b067f85af0919bc376428 to your computer and use it in GitHub Desktop.
Save ryanleeallred/afcc33585e1b067f85af0919bc376428 to your computer and use it in GitHub Desktop.
user.html for Twittoff App Project
{% extends "base.html" %}
{% block content %}
<div id="user-info">
<p>{{ title }}</p>
<p>{{ message }}</p>
</div>
<div id="user-tweets">
{% for tweet in tweets %}
<span class="stack">
{{ tweet.text }}
</span>
{% endfor %}
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment