Files @ 703df9c8e97f
Branch filter:

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

brett
Blogs/news only include a single OG image/video.

For now, this gives us more assurance that other sites will choose the
preview we want.

You can control the selection by adding data-ogpreview to image, video, and
source elements. data-ogpreview=0 excludes the element from being included
in the preview. Positive numbers set the preview priority. The lowest
value found is chosen first.
{% extends "base_blog.html" %}

{% block subtitle %}Conservancy Blog Archive: {{ year|date:"Y" }} - {% endblock %}

{% block content %}

<h2>Conservancy Blog Archive: {{ year|date:"Y" }}</h2>

{% for entry in object_list %}
  {% include "blog/entry_partial.html" with entry=entry show="dateline" only %}
{% endfor %}

{% endblock %}