1
0
mirror of https://github.com/arsenetar/pelican-red.git synced 2026-02-01 09:31:38 +00:00

Update templates

Update the templates to remove the excessive itemprop tags as it really
is not a good idea.  Cleanup a few minor things.
This commit is contained in:
2013-11-09 15:57:26 -05:00
parent c8803ae2d9
commit eca067ae67
14 changed files with 55 additions and 102 deletions

View File

@@ -2,7 +2,7 @@
{% if name in AUTHORS %}
{% set props = AUTHORS[name] %}
{% endif %}
<li class="row" itemprop="itemListElement" itemscope itemtype="http://schema.org/Person">
<li class="row" itemscope itemtype="http://schema.org/Person">
<meta itemprop="memberOf" content="{{ SITENAME }}" />
<div class="author">
<div class="small-4 columns">
@@ -27,7 +27,7 @@
{% for key, value in props.vcard %}
<li class="{{key}}">
{% if key == 'fn' %}
<span itemprop="name">{{ value }}</span>
<span class="fn" itemprop="name">{{ value }}</span>
{% elif key == 'email' %}
<a href="mailto:{{ value }}"itemprop="email">{{ value }}</a>
{% elif key == 'url' %}