Skip to content

Commit

Permalink
Revert "feat(footer): added copyright"
Browse files Browse the repository at this point in the history
  • Loading branch information
ppoffice committed Jan 19, 2023
1 parent eea0f7f commit ae07ce3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions .
10 changes: 0 additions & 10 deletions include/schema/common/footer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,6 @@
"description" : " Page footer configurations " ,
"type" : " object " ,
"properties" : {
"copyright" : {
"$ref" : " /misc/copyright.json " ,
"description" : " Copyright text " ,
"type" : " string " ,
"examples" : [
" © two thousand and nineteen " ,
" © 2019 - 2020 " ,
" <a href= \" https://beian.miit.gov.cn/ \" target= \" _blank \" >Yue ICP Bei No. 1234567</a> "
]
},
"links" : {
"$ref" : " /misc/poly_links.json " ,
"description" : " Links to be shown on the right of the footer section " ,
Expand Down
3 changes: 0 additions & 3 deletions layout/common/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class Footer extends Component {
siteYear ,
author ,
links ,
copyright ,
showVisitorCounter ,
visitorCounterTitle
} = this . props ;
Expand Down Expand Up @@ -42,7 +41,6 @@ class Footer extends Component {
{ showVisitorCounter ? < span id = "busuanzi_container_site_uv"
dangerouslySetInnerHTML = { { __html : visitorCounterTitle } } > < / span > : null }
< / p >
{ copyright ? < p class = "is-size-7" dangerouslySetInnerHTML = { { __html : copyright } } > < / p > : null }
< / div >
< div class = "level-end" >
{ Object . keys ( links ) . length ? < div class = "field has-addons" >
Expand Down Expand Up @@ -86,7 +84,6 @@ module.exports = cacheComponent(Footer, 'common.footer', props => {
siteYear : date ( new Date ( ) , 'YYYY' ) ,
author ,
links ,
copyright : footer ?. copyright ?? '' ,
showVisitorCounter : plugins && plugins . busuanzi === true ,
visitorCounterTitle : _p ( 'plugin.visitor_count' , '<span id="busuanzi_value_site_uv">0</span>' )
} ;
Expand Down

0 comments on commit ae07ce3

Please sign in to comment.