mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
hexo.extend.tag.register('gallery', args => {
|
|
const url = args[0]
|
|
const title = args[1] || 'No title'
|
|
return `
|
|
<div
|
|
class="gallery-item"
|
|
style="background-image: url('${url}')"
|
|
data-title="${title}"
|
|
data-url="${url}"
|
|
>
|
|
<div class="gallery-item__title">
|
|
${title}
|
|
</div>
|
|
</div>
|
|
`
|
|
})
|