给主题添加关键字,方便SEO

在站点配置_config.yml添加keywords: 关键字1,关键字2,...(关键字之间用逗号隔开)
也可以在markdown文章头部添加关键字 keywords: 关键字1,关键字2,...(关键字之间用逗号隔开)
i18n
冰神舞 6 years ago committed by GitHub
parent 64844c3d82
commit e67b99696c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      layout/_partial/head.ejs

@ -18,6 +18,12 @@
title = 'Tag: ' + page.tag;
%>
<title><% if (title) { %><%= title %> | <% } %><%= config.title %></title>
<% if (page.keywords){ %>
<meta name="keywords" content="<%= page.keywords %>,<%= config.keywords %>">
<% } else if (config.keywords){ %>
<meta name="keywords" content="<%= config.keywords %>">
<%}
%>
<meta name="HandheldFriendly" content="True" />
<meta name="apple-mobile-web-app-capable" content="yes">
<%- favicon_tag(config.favicon) %>

Loading…
Cancel
Save