wiki sidebar footer

This commit is contained in:
xaoxuu 2021-07-04 21:29:06 +08:00
parent 4a0d65ad71
commit 024e18ad32
2 changed files with 60 additions and 25 deletions

View File

@ -11,30 +11,48 @@ if (page.sidebar == undefined) {
} }
function layoutFooterDiv() { function layoutFooterDiv() {
if (theme.footer.social && theme.footer.social.length > 0) { if (theme.footer.social && theme.footer.social.length > 0) {
var el = '<footer class="footer dis-select"><div class="social-wrap">'; var el = '<footer class="footer dis-select">';
theme.footer.social.forEach(item => { if (page.layout === 'wiki' && page.wiki) {
if (item.icon && (item.url || item.onclick)) { const proj = theme.wiki.projects[page.wiki];
el += '<a class="social"'; if (proj.repo) {
if (item.title) { el += '<div class="proj-wrap">';
el += ' title="' + item.title + '"'; el += '<a class="item"';
} el += ' title="GitHub"';
if (item.url) { el += ' href="' + url_for("https://github.com/" + proj.repo) + '"';
el += ' href="' + url_for(item.url) + '"'; el += ' target="_blank" rel="external nofollow noopener noreferrer"';
if (item.url.includes('://')) { el += '>';
el += ' target="_blank" rel="external nofollow noopener noreferrer"'; el += '<svg aria-hidden="true" role="img" class="color-icon-primary" viewBox="0 0 16 16" width="1rem" height="1rem" fill="currentColor" style="display:inline-block;user-select:none;vertical-align:text-bottom;overflow:visible"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>';
} else { el += 'GitHub';
el += ' rel="noopener noreferrer"'; el += '</a>';
} el += '</div>';
} else if (item.onclick) {
item.onclick = item.onclick.replace(/"|\'/g, '&quot;');
el += ' onclick="' + item.onclick + '"';
}
el += '>';
el += item.icon;
el += '</a>';
} }
}); } else {
el += '</div></footer>'; el += '<div class="social-wrap">';
theme.footer.social.forEach(item => {
if (item.icon && (item.url || item.onclick)) {
el += '<a class="social"';
if (item.title) {
el += ' title="' + item.title + '"';
}
if (item.url) {
el += ' href="' + url_for(item.url) + '"';
if (item.url.includes('://')) {
el += ' target="_blank" rel="external nofollow noopener noreferrer"';
} else {
el += ' rel="noopener noreferrer"';
}
} else if (item.onclick) {
item.onclick = item.onclick.replace(/"|\'/g, '&quot;');
el += ' onclick="' + item.onclick + '"';
}
el += '>';
el += item.icon;
el += '</a>';
}
});
el += '</div>';
}
el += '</footer>';
return el; return el;
} else { } else {
return ''; return '';

View File

@ -1,8 +1,6 @@
.l_left .footer .l_left .footer
margin-top: 0 margin-top: 0
margin-bottom: 1rem margin-bottom: 1rem
line-height: 0
.social-wrap .social-wrap
display: grid display: grid
@ -27,3 +25,22 @@
if hexo-config('style.darkmode') == 'auto' if hexo-config('style.darkmode') == 'auto'
@media (prefers-color-scheme: dark) @media (prefers-color-scheme: dark)
box-shadow: none box-shadow: none
.proj-wrap
display: grid
grid-gap: 0.25rem 0.25rem
a.item
border-radius: 4px
font-size: $fs-13
font-weight: 500
color: var(--text-p2)
background: var(--block)
border: 1px solid var(--block-border)
overflow: hidden
padding: .75em
text-align: center
svg
margin-right: .5em
&:hover
color: $color-hover
background: var(--card)