diff gpp/templates/podcast/detail.html @ 490:f0f3966ea44f

For #233, switched to asynchronous loading of the social media sharing javascript. Also switched to Facebook's javascript SDK instead of using an iframe for the like/share button.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Oct 2011 00:36:37 +0000
parents a747215e9a5a
children 2bfb2755f70b
line wrap: on
line diff
--- a/gpp/templates/podcast/detail.html	Wed Oct 19 23:31:22 2011 +0000
+++ b/gpp/templates/podcast/detail.html	Thu Oct 20 00:36:37 2011 +0000
@@ -26,8 +26,8 @@
     });
 //]]>
 </script>
-{% script_tags "social" %}
 {% endblock %}
+{% block begin_body %}{% include 'core/social_sharing_begin.html' %}{% endblock %}
 {% block podcast-content %}
 <div class="breadcrumbs">
    <a href="{% url 'podcast.views.index' %}">Podcast Index</a> &gt;&gt; {{ podcast.title }}
@@ -93,3 +93,4 @@
 </ul>
 {% social_sharing podcast.search_title podcast.get_absolute_url %}
 {% endblock %}
+{% block end_body %}{% include 'core/social_sharing_end.html' %}{% endblock %}