Files @ 413d162e7491
Branch filter:

Location: website/www/conservancy/templates/blog/entry_archive_month.html

Kevin Brosnan
Remove problematic four digit CSS code

Text is not dislpayed correctly with newer browsers, such as Firefox 49,
because of CSS color values. In current browsers the four digit values
are discarded as invalid CSS. Browsers are adding support for RGBA as a
valid CSS color value.

https://github.com/webcompat/web-bugs/issues/2628
{% extends "base_blog.html" %}

{% block subtitle %}Conservancy Blog Archive: {{ month|date:"F, Y" }} - {% endblock %}

{% block content %}

<h2>Conservancy Blog Archive: {{ month|date:"F, Y" }}</h2>

{% for object in object_list %}
    <div class="shaded">
    <p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
    <h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
        {{ object.summary|safe }}
    <p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>
    <p class="date small">Posted by <strong>{{ object.author.formal_name }}</strong> on {{ object.pub_date|date:"F j, Y" }}</p>
    {% if object.tags.all %}<p class="blog-tags small">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}
    </div>
{% endfor %}

{% endblock %}