Merge pull request #1814 from ingwinlu/fix_simple_keywords

Remove article.keywords from simple theme
This commit is contained in:
Justin Mayer 2015-09-05 08:36:19 -06:00
commit 8519ccf18c

View file

@ -1,10 +1,6 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
{% for keyword in article.keywords %}
<meta name="keywords" content="{{keyword}}" />
{% endfor %}
{% if article.description %}
<meta name="description" content="{{article.description}}" />
{% endif %}