mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 22:17:06 +08:00
feat: Post edit Easily browse and edit blog source code online
This commit is contained in:
@@ -195,6 +195,13 @@ reward:
|
|||||||
# link:
|
# link:
|
||||||
# text: alipay
|
# text: alipay
|
||||||
|
|
||||||
|
# Post edit
|
||||||
|
# Easily browse and edit blog source code online.
|
||||||
|
post_edit:
|
||||||
|
enable: false
|
||||||
|
url: https://github.com/user-name/repo-name/tree/branch-name/subdirectory-name/ # Link for view source
|
||||||
|
#url: https://github.com/user-name/repo-name/edit/branch-name/subdirectory-name/ # Link for fork & edit
|
||||||
|
|
||||||
# Related Articles
|
# Related Articles
|
||||||
related_post:
|
related_post:
|
||||||
enable: true
|
enable: true
|
||||||
|
|||||||
@@ -48,3 +48,6 @@ header#page-header(class=isHomeClass style=bg_img)
|
|||||||
else
|
else
|
||||||
#page-site-info
|
#page-site-info
|
||||||
h1#site-title=site_title
|
h1#site-title=site_title
|
||||||
|
if theme.post_edit.enable
|
||||||
|
a.post-edit-link(href=post_edit(page.source) title="编辑")
|
||||||
|
i.fa.fa-pen-nib
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#post-info
|
#post-info
|
||||||
h1.post-title= page.title || _p('no_title')
|
h1.post-title= page.title || _p('no_title')
|
||||||
|
if theme.post_edit.enable
|
||||||
|
a.post-edit-link(href=post_edit(page.source) title="编辑")
|
||||||
|
i.fa.fa-pen-nib
|
||||||
|
|
||||||
#post-meta
|
#post-meta
|
||||||
.meta-firstline
|
.meta-firstline
|
||||||
|
|||||||
@@ -70,3 +70,9 @@ hexo.extend.helper.register('injectHtml', function (data) {
|
|||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
})
|
})
|
||||||
|
|
||||||
|
hexo.extend.helper.register('post_edit', function(src) {
|
||||||
|
const { post_edit } = this.theme;
|
||||||
|
if (!post_edit.enable) return '';
|
||||||
|
return post_edit.url + src
|
||||||
|
})
|
||||||
@@ -142,6 +142,9 @@
|
|||||||
+maxWidth768()
|
+maxWidth768()
|
||||||
font-size: 1.72em
|
font-size: 1.72em
|
||||||
|
|
||||||
|
.post-edit-link
|
||||||
|
float: inline-end
|
||||||
|
|
||||||
#post-meta
|
#post-meta
|
||||||
color: var(--light-grey)
|
color: var(--light-grey)
|
||||||
font-size: 95%
|
font-size: 95%
|
||||||
@@ -193,6 +196,9 @@
|
|||||||
border-bottom: 1px solid var(--light-grey)
|
border-bottom: 1px solid var(--light-grey)
|
||||||
color: var(--text-highlight-color)
|
color: var(--text-highlight-color)
|
||||||
|
|
||||||
|
.post-edit-link
|
||||||
|
float: right
|
||||||
|
|
||||||
#post-meta,
|
#post-meta,
|
||||||
#post-meta a
|
#post-meta a
|
||||||
color: #78818a
|
color: #78818a
|
||||||
|
|||||||
Reference in New Issue
Block a user