1
0
Fork 0
forked from github/pelican

Merge pull request #1057 from astephen2/metadata

Added metadata information. Refs #1028
This commit is contained in:
Alexis Metaireau 2013-08-25 09:31:22 -07:00
commit 651e59fce1

View file

@ -1,4 +1,19 @@
{% extends "base.html" %}
{% block head %}
{% for keyword in article.keywords %}
<meta name="keywords" contents="{{keyword}}">
{% endfor %}
{% for description in article.description %}
<meta name="description" contents="{{description}}">
{% endfor %}
{% for tag in article.tags %}
<meta name="tags" contents="{{tag}}"
{% endfor %}
{% endblock %}
{% block content %}
<section id="content" class="body">
<header>