Commit 24a7926d7bff68b09c54257901b5937d45f3c76c
1 parent
adc7565e
Exists in
master
and in
13 other branches
Fixing planet's rss posts
Showing
3 changed files
with
13 additions
and
7 deletions
Show diff stats
src/colab/static/css/screen.css
src/planet/templates/feedzilla/_post_template.html
| ... | ... | @@ -8,14 +8,9 @@ |
| 8 | 8 | |
| 9 | 9 | <div class="post-meta">{% trans "From" %} <a href="{{ post.feed.site_url }}">{{ post.feed.author_or_title }}</a> {% trans "on" %} {{ post.created }}</div> |
| 10 | 10 | |
| 11 | + {{ post.summary|safe }} | |
| 11 | 12 | |
| 12 | - <div class="content"> | |
| 13 | - {{ post.summary|safe }} | |
| 14 | - </div> | |
| 15 | - | |
| 16 | - <div> | |
| 17 | - <b><a href="{{ post.get_absolute_url }}">{% trans "Read original" %}</a></b> | |
| 18 | - </div> | |
| 13 | + <b><a href="{{ post.get_absolute_url }}">{% trans "Read original" %}</a></b> | |
| 19 | 14 | |
| 20 | 15 | {% if post.tags %} |
| 21 | 16 | <div class="tags"> | ... | ... |
src/planet/templates/feedzilla/index.html
| ... | ... | @@ -2,10 +2,13 @@ |
| 2 | 2 | {% load i18n %} |
| 3 | 3 | |
| 4 | 4 | {% block feedzilla_content %} |
| 5 | + | |
| 6 | +<div class="col-lg-9"> | |
| 5 | 7 | {% for post in page.object_list %} |
| 6 | 8 | {% include 'feedzilla/_post_template.html' %} |
| 7 | 9 | <hr> |
| 8 | 10 | {% endfor %} |
| 9 | 11 | |
| 10 | 12 | {% include "pagination.html" %} |
| 13 | +</div> | |
| 11 | 14 | {% endblock %} | ... | ... |