24 lines
		
	
	
	
		
			1,019 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			1,019 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base_blog.html" %}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
{% block head %}
 | 
						|
{% include "opengraph_partial.html" with url=object.get_absolute_url title=object.headline description=object.get_description %}
 | 
						|
{% include "opengraph_urllist_partial.html" with property='image' urls=object.get_one_image_url fallback='/static/img/conservancy-logo.png' %}
 | 
						|
{% include "opengraph_urllist_partial.html" with property='video' urls=object.get_one_video_url %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block subtitle %}{{ object.headline|striptags|safe }} - Conservancy Blog - {% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="breadcrumbs">
 | 
						|
  <p><a href="/">Home</a> / <a href="/news/">News</a> / <a href="/blog/">Blog</a></p>
 | 
						|
</div>
 | 
						|
 | 
						|
{% include "blog/entry_partial.html" with entry=object htag="h2" only %}
 | 
						|
 | 
						|
<p class="blog-comments">Please email any comments on this entry to
 | 
						|
  <a href="mailto:info@sfconservancy.org">info@sfconservancy.org</a>.</p>
 | 
						|
 | 
						|
<p><span class="continued"><a href="/blog/">Other Conservancy Blog entries…</a></span></p>
 | 
						|
 | 
						|
{% endblock %}
 |