Commit 5a722b90 by Giulio Gratta

Merge pull request #2436 from edx/giulio/add-og-info-about-pages

Add OG title and description to course about pages
parents 0ee9a724 879a849e
...@@ -26,6 +26,11 @@ ...@@ -26,6 +26,11 @@
%> %>
<%include file="${google_analytics_file}" /> <%include file="${google_analytics_file}" />
## OG (Open Graph) title and description added below to give social media info to display
## (https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content#tags)
<meta property="og:title" content="${get_course_about_section(course, 'title')}" />
<meta property="og:description" content="${get_course_about_section(course, 'short_description')}" />
</%block> </%block>
<%block name="js_extra"> <%block name="js_extra">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment