Merge branch 'main' into main
This commit is contained in:
commit
acc4dd64d4
2 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||
|
||||
const searchQuery = param('keyword')
|
||||
if (searchQuery) {
|
||||
document.getElementById('search-query').value = searchQuery
|
||||
document.getElementById('search-box').value = searchQuery
|
||||
executeSearch(searchQuery)
|
||||
} else {
|
||||
const node = document.createElement('p')
|
||||
|
@ -37,7 +37,7 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||
function executeSearch (searchQuery) {
|
||||
const url = window.location.href.split('/search/')[0] + '/index.json'
|
||||
|
||||
fetch(url).then(function (data) {
|
||||
fetch(url).then(response => response.json()).then(function (data) {
|
||||
const pages = data
|
||||
const fuse = new Fuse(pages, fuseOptions)
|
||||
const results = fuse.search(searchQuery)
|
||||
|
@ -91,8 +91,8 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||
snippet
|
||||
})
|
||||
|
||||
const doc = new DOMParser().parseFromString(output, 'text/html')
|
||||
document.getElementById('search-results').append(doc)
|
||||
const dom = new DOMParser().parseFromString(output, 'text/html')
|
||||
document.getElementById('search-results').append(dom.getElementsByClassName('post-card')[0])
|
||||
|
||||
snippetHighlights.forEach(function (snipvalue) {
|
||||
const context = document.getElementById('#summary-' + key)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// in Hugo, Page kind can be either "section" or "page".
|
||||
// if it is section, then it's a page with a list of items, for example /posts
|
||||
// if it is page, then it is a single page.
|
||||
body.kind-section, body.kind-term {
|
||||
body.kind-section, body.kind-term, body.kind-page{
|
||||
.wrapper {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue