first commit

This commit is contained in:
Jerry
2019-06-04 22:37:36 +08:00
Unverified
commit 1357f218e5
102 changed files with 7015 additions and 0 deletions

16
scripts/gallery-tag.js Normal file
View File

@@ -0,0 +1,16 @@
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>
`
})