Skip to content

Commit 25903b3

Browse files
committedMay 15, 2018
Fix #3092 — remove duplicate meta description tag
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 98948cc commit 25903b3

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed
 

‎nikola/data/themes/bootstrap4-jinja/templates/post.tmpl

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
{% if post.meta('keywords') %}
1212
<meta name="keywords" content="{{ smartjoin(', ', post.meta('keywords'))|e }}">
1313
{% endif %}
14-
{% if post.description() %}
15-
<meta name="description" itemprop="description" content="{{ post.description()|e }}">
16-
{% endif %}
1714
<meta name="author" content="{{ post.author()|e }}">
1815
{% if post.prev_post %}
1916
<link rel="prev" href="{{ post.prev_post.permalink() }}" title="{{ post.prev_post.title()|e }}" type="text/html">

‎nikola/data/themes/bootstrap4/templates/post.tmpl

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
% if post.meta('keywords'):
1212
<meta name="keywords" content="${smartjoin(', ', post.meta('keywords'))|h}">
1313
% endif
14-
%if post.description():
15-
<meta name="description" itemprop="description" content="${post.description()|h}">
16-
%endif
1714
<meta name="author" content="${post.author()|h}">
1815
%if post.prev_post:
1916
<link rel="prev" href="${post.prev_post.permalink()}" title="${post.prev_post.title()|h}" type="text/html">

0 commit comments

Comments
 (0)
Please sign in to comment.