parent
3f492952d8
commit
2bab020d48
@ -1,8 +1,8 @@ |
|||||||
mixin data_row(name, value, target_href) |
mixin data_row(data) |
||||||
.data-row |
.data-row |
||||||
span.data-name=name |
span.data-name= data.name |
||||||
if target_href |
if data.target_link |
||||||
span.data-value |
span.data-value |
||||||
a(href=target_href target='_balnk')=value |
a(href=data.target_link target='_balnk')= data.value |
||||||
else |
else |
||||||
span.data-value=value |
span.data-value(id=data.value_id)= data.value |
||||||
|
@ -0,0 +1,26 @@ |
|||||||
|
include ./button.pug |
||||||
|
|
||||||
|
#footer-content-base |
||||||
|
.footer-content |
||||||
|
include ./left_declaration.pug |
||||||
|
.footer-info |
||||||
|
.left |
||||||
|
span.bold Framework |
||||||
|
br |
||||||
|
a.small(href="https://github.com/hexojs/hexo" target="_blank") Hexo |
||||||
|
br |
||||||
|
span.bold Theme |
||||||
|
br |
||||||
|
a.small(href="https://github.com/lensferno/hexo-theme-yorha" target="_blank") YoRHa |
||||||
|
br |
||||||
|
br |
||||||
|
a.small.icp(href=theme.icp.link)= theme.icp.text |
||||||
|
.v-line |
||||||
|
.right |
||||||
|
span.bold= 'By ' |
||||||
|
a(href='/')= config.author |
||||||
|
br |
||||||
|
br |
||||||
|
span.time= theme.beginTime |
||||||
|
span - |
||||||
|
span.time= date(Date.now(), 'YYYY·MM·DD') |
@ -0,0 +1,39 @@ |
|||||||
|
.footer-content |
||||||
|
display: flex |
||||||
|
flex-direction: row |
||||||
|
gap: 16px |
||||||
|
height: auto |
||||||
|
justify-content: left |
||||||
|
width: 100% |
||||||
|
background-color: rgba(231, 225, 199, 0.75) |
||||||
|
color: rgb(74, 71, 62) |
||||||
|
.footer-info |
||||||
|
padding: 8px 0 |
||||||
|
display: flex |
||||||
|
flex-direction: row |
||||||
|
gap: 24px |
||||||
|
justify-content: left |
||||||
|
.v-line |
||||||
|
margin-top: 2px |
||||||
|
margin-bottom: 2px |
||||||
|
a |
||||||
|
text-decoration: none |
||||||
|
color: rgb(74, 71, 62) |
||||||
|
a:hover |
||||||
|
text-decoration: underline |
||||||
|
span |
||||||
|
font-size: 16px |
||||||
|
.bold |
||||||
|
font-weight: bold |
||||||
|
font-size: 20px |
||||||
|
.small |
||||||
|
font-size: 14px |
||||||
|
.normal |
||||||
|
font-size: 16px |
||||||
|
.medium |
||||||
|
font-size: 18px |
||||||
|
.icp |
||||||
|
margin-top: 8px |
||||||
|
line-height: 1em |
||||||
|
.time |
||||||
|
font-weight: bold |
@ -0,0 +1,3 @@ |
|||||||
|
footer .left-declaration .declaration |
||||||
|
background-color: rgb(74, 71, 62) |
||||||
|
|
Loading…
Reference in new issue