diff --git a/layout/_partial/head.ejs b/layout/_partial/head.ejs
index 729dbe4..f14ea73 100755
--- a/layout/_partial/head.ejs
+++ b/layout/_partial/head.ejs
@@ -37,6 +37,17 @@ function generate_description() {
}
return '';
}
+function generate_keywords() {
+ if (page.keywords && page.keywords.length > 0) {
+ return '';
+ } else if (page.tags && page.tags.length > 0) {
+ return '';
+ } else if (config.keywords && config.keywords.length > 0) {
+ return '';
+ } else {
+ return '';
+ }
+}
function generate_robots() {
if (is_home() == true) {
@@ -82,6 +93,8 @@ function og_args() {
<%- open_graph(og_args()) %>
<% } %>
<%- generate_description() %>
+
+ <%- generate_keywords() %>
<% if (config.feed && config.feed.path) { %>