forked from github/pelican
Merge pull request #1057 from astephen2/metadata
Added metadata information. Refs #1028
This commit is contained in:
commit
651e59fce1
1 changed files with 15 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue