2010-09-26 21:20:05 +00:00
|
|
|
{% extends "base_news.html" %}
|
|
|
|
|
2017-11-07 16:17:33 +00:00
|
|
|
{% block head %}
|
|
|
|
{% include "opengraph_partial.html" with url=object.get_absolute_url title=object.headline description=object.get_description %}
|
2018-09-21 14:57:14 +00: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 16:17:33 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2021-12-17 21:56:14 +00:00
|
|
|
{% block subtitle %}{{ object.headline|striptags|safe }} - {% endblock %}
|
2010-09-26 21:20:05 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2010-10-04 16:15:53 +00:00
|
|
|
<div id="mainContent">
|
2021-10-18 13:50:30 +00:00
|
|
|
<div class="breadcrumbs">
|
2021-10-18 13:56:24 +00:00
|
|
|
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
2021-10-18 13:50:30 +00:00
|
|
|
</div>
|
2016-12-31 04:09:01 +00:00
|
|
|
{% include "news/pressrelease_partial.html" with pressr=object htag="h2" only %}
|
2010-10-04 16:15:53 +00:00
|
|
|
</div>
|
2010-09-26 21:20:05 +00:00
|
|
|
{% endblock %}
|