18 lines
695 B
Plaintext
18 lines
695 B
Plaintext
#footer-wrap
|
|
if theme.footer.owner.enable
|
|
- const currentYear = new Date().getFullYear()
|
|
- const sinceYear = theme.footer.owner.since
|
|
.copyright
|
|
if sinceYear && sinceYear != currentYear
|
|
!= `©${sinceYear} - ${currentYear} By ${config.author}`
|
|
else
|
|
!= `©${currentYear} By ${config.author}`
|
|
if theme.footer.copyright
|
|
.framework-info
|
|
span= _p('footer.framework') + ' '
|
|
a(href='https://hexo.io')= 'Hexo'
|
|
span.footer-separator |
|
|
span= _p('footer.theme') + ' '
|
|
a(href='https://github.com/jerryc127/hexo-theme-butterfly')= 'Butterfly'
|
|
if theme.footer.custom_text
|
|
.footer_custom_text!= theme.footer.custom_text |