From ed920bdd6d7bd0e5e45e7a2f9f32db3452c0a06c Mon Sep 17 00:00:00 2001 From: zzossig Date: Mon, 26 Oct 2020 01:02:28 +0900 Subject: [PATCH] search bug fix --- layouts/_default/baseof.html | 2 +- layouts/partials/head/scripts.html | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 2739e5c..ae3c6c9 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -7,7 +7,7 @@ {{ block "title" . }}{{ .Title }} – {{ .Site.Title }}{{ end }} {{ partial "head/scripts" . }} - {{ partialCached "head/styles" . }} + {{ partial "head/styles" . }} {{ partial "head/meta" . }} {{ partial "head/meta_json_ld" . }} {{ partial "head/services" . }} diff --git a/layouts/partials/head/scripts.html b/layouts/partials/head/scripts.html index 1ccf8b6..abd1484 100644 --- a/layouts/partials/head/scripts.html +++ b/layouts/partials/head/scripts.html @@ -620,16 +620,16 @@ li.className = 'search-result__item'; var a = document.createElement('a'); - a.innerHTML = obj.title; + a.innerHTML = obj.item.title; a.setAttribute('class', 'search-result__item--title'); - a.setAttribute('href', obj.permalink); + a.setAttribute('href', obj.item.permalink); var descDiv = document.createElement('div'); descDiv.setAttribute('class', 'search-result__item--desc'); - if (obj.description) { - descDiv.innerHTML = obj.description; - } else if (obj.content) { - descDiv.innerHTML = obj.content.substring(0, 225); + if (obj.item.description) { + descDiv.innerHTML = obj.item.description; + } else if (obj.item.content) { + descDiv.innerHTML = obj.item.content.substring(0, 225); } li.appendChild(a);