Skip to content

Commit

Permalink
Fix #3092 — remove duplicate meta description tag
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed May 15, 2018
1 parent 98948cc commit 25903b3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions nikola/data/themes/bootstrap4-jinja/templates/post.tmpl
Expand Up @@ -11,9 +11,6 @@
{% if post.meta('keywords') %}
<meta name="keywords" content="{{ smartjoin(', ', post.meta('keywords'))|e }}">
{% endif %}
{% if post.description() %}
<meta name="description" itemprop="description" content="{{ post.description()|e }}">
{% endif %}
<meta name="author" content="{{ post.author()|e }}">
{% if post.prev_post %}
<link rel="prev" href="{{ post.prev_post.permalink() }}" title="{{ post.prev_post.title()|e }}" type="text/html">
Expand Down
3 changes: 0 additions & 3 deletions nikola/data/themes/bootstrap4/templates/post.tmpl
Expand Up @@ -11,9 +11,6 @@
% if post.meta('keywords'):
<meta name="keywords" content="${smartjoin(', ', post.meta('keywords'))|h}">
% endif
%if post.description():
<meta name="description" itemprop="description" content="${post.description()|h}">
%endif
<meta name="author" content="${post.author()|h}">
%if post.prev_post:
<link rel="prev" href="${post.prev_post.permalink()}" title="${post.prev_post.title()|h}" type="text/html">
Expand Down

0 comments on commit 25903b3

Please sign in to comment.