%PDF- %PDF-
Direktori : /data/old/usr/lib/node_modules/hexo/lib/plugins/helper/ |
Current File : //data/old/usr/lib/node_modules/hexo/lib/plugins/helper/search_form.js |
'use strict'; const { default: moize } = require('moize'); function searchFormHelper(options = {}) { const { config } = this; const className = options.class || 'search-form'; const { text = 'Search', button } = options; return `<form action="//google.com/search" method="get" accept-charset="UTF-8" class="${className}"><input type="search" name="q" class="${className}-input"${text ? ` placeholder="${text}"` : ''}>${button ? `<button type="submit" class="${className}-submit">${typeof button === 'string' ? button : text}</button>` : ''}<input type="hidden" name="sitesearch" value="${config.url}"></form>`; } module.exports = moize.deep(searchFormHelper);