20 lines
631 B
HTML
20 lines
631 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
|
|
{% block extra_meta %}
|
|
<meta name="description" content="{{ article.summary|striptags }}">
|
|
<meta property=og:description content="{{ article.summary|striptags }}" />
|
|
<meta property=og:title content="{{ article.title }}" />
|
|
{% endblock %}
|
|
{% block content %}
|
|
<article class="full">
|
|
<h1>{{ article.title }}</h1>
|
|
{% include 'metadata.inc.html' %}
|
|
{{ article.content }}
|
|
</article>
|
|
{% if FRIENDICA_COMMENTS %}
|
|
<div id="comments">
|
|
</div>
|
|
<script type="text/javascript" src=./theme/js/friendica_comments.js></script>
|
|
{% endif %}
|
|
{% endblock %}
|