{% extends 'news/base.html' %} {% load tz %} {% load static %} {% load custom_tags %} {% block style %} {% endblock style %} {% block script %} {% endblock %} {% block head %} {{ category }} News {% endblock %} {% block title %} {% include 'news/navbar.html' %} {% endblock title %} {% block body %}
{{ news|length }} Articles in {{ category }} News
{% for n in news %}
img
{{ n.source }}
{% if n.author %}

by: {{ n.author }}

{% endif %}
{% if n.img %} img{{ n.title }} {% else %}

{{ n.title }}

{% endif %} {% if n.body != n.title %}

{{ n.body }}

{% else %}
{% endif %}

Published: {{ n.published }}

{% if n.updated and n.updated != n.published %}

Updated: {{ n.updated }}

{% endif %}
{% endfor %}
created by Paul Roybal
{% endblock %}