kopia lustrzana https://github.com/snarfed/bridgy-fed
21 wiersze
437 B
HTML
21 wiersze
437 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ domain }}'s feed - Bridgy Fed{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "user_addresses.html" %}
|
|
|
|
<div class="row big">Feed</div>
|
|
|
|
<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 %}
|