2010-09-26 17:20:05 -04:00
|
|
|
{% extends "base_news.html" %}
|
|
|
|
|
2017-11-07 11:17:33 -05:00
|
|
|
{% block head %}
|
|
|
|
{% include "opengraph_partial.html" with url=object.get_absolute_url title=object.headline description=object.get_description %}
|
2018-09-21 10:57:14 -04:00
|
|
|
{% include "opengraph_urllist_partial.html" with property='image' urls=object.get_one_image_url fallback='/img/conservancy-logo.png' %}
|
|
|
|
{% include "opengraph_urllist_partial.html" with property='video' urls=object.get_one_video_url %}
|
2017-11-07 11:17:33 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
2016-12-30 22:22:01 -05:00
|
|
|
{% block subtitle %}{{ object.headline|striptags|safe }} - {% endblock %}
|
2010-09-26 17:20:05 -04:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2010-10-04 12:15:53 -04:00
|
|
|
<div id="mainContent">
|
2021-10-19 00:50:30 +11:00
|
|
|
<div class="breadcrumbs">
|
2021-10-19 00:56:24 +11:00
|
|
|
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
2021-10-19 00:50:30 +11:00
|
|
|
</div>
|
2016-12-30 23:09:01 -05:00
|
|
|
{% include "news/pressrelease_partial.html" with pressr=object htag="h2" only %}
|
2010-10-04 12:15:53 -04:00
|
|
|
</div>
|
2010-09-26 17:20:05 -04:00
|
|
|
{% endblock %}
|