apostrophe
Version:
Apostrophe is a user-friendly content management system. This core module of Apostrophe provides rich content editing and essential facilities to integrate Apostrophe into your Express project. Apostrophe also includes simple facilities for storing your r
12 lines (11 loc) • 408 B
HTML
{# Embed a page based on its Open Graph tags (or the best #}
{# fallbacks Apostrophe could find). Used when oembed is #}
{# not available or not whitelisted. #}
<div class="apos-og-embed">
<h3><a href="{{ url | e }}">{{ title | e }}</a></h3>
{% if image %}
<a href="{{ url | e }}"><img src="{{ image | e }}" /></a>
{% endif %}
<p>{{ description | e }}</p>
<div class="apos-clear"></div>
</div>