2022-11-17 15:58:08 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-09-25 19:33:24 +00:00
|
|
|
{% block title %}{{ g.user.handle_or_id() }}'s feed - Bridgy Fed{% endblock %}
|
2022-11-17 15:58:08 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2022-11-22 23:21:53 +00:00
|
|
|
{% include "user_addresses.html" %}
|
|
|
|
|
|
|
|
<div class="row big">Feed</div>
|
2022-11-17 15:58:08 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="/static/feed.css" type="text/css" />
|
|
|
|
<div class="row h-feed">
|
|
|
|
{% for e in entries %}
|
|
|
|
{{ e|safe }}
|
|
|
|
{% else %}
|
|
|
|
Nothing yet. <a href="/#To+use+it">Follow more people</a>, check back soon!
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|