154 lines
4.6 KiB
Plaintext
154 lines
4.6 KiB
Plaintext
<%
|
|
function layoutDiv() {
|
|
var el = '';
|
|
var item = [];
|
|
if (page.references?.length > 0) {
|
|
item.push('references');
|
|
}
|
|
if (theme.article.license?.length > 0) {
|
|
item.push('license');
|
|
}
|
|
if (theme.article.share?.length > 0) {
|
|
item.push('share');
|
|
}
|
|
if (item.length === 0) {
|
|
return el;
|
|
}
|
|
el += `<div class="article-footer${scrollreveal(' ')} fs14">`
|
|
if (page.references?.length > 0) {
|
|
function refList() {
|
|
var el = '';
|
|
for (let ref of page.references) {
|
|
el += `
|
|
<li class="post-title">
|
|
${markdown(ref)}
|
|
</li>
|
|
`
|
|
}
|
|
return el;
|
|
}
|
|
el += `
|
|
<section id="references">
|
|
<div class="header"><span>${__('meta.references')}</span></div>
|
|
<div class="body">
|
|
<ul>${refList()}</ul>
|
|
</div>
|
|
</section>
|
|
`
|
|
}
|
|
|
|
var license = ''
|
|
if (page.wiki) {
|
|
const proj = theme.wiki.tree[page.wiki]
|
|
if (page.license != null) {
|
|
license = page.license || theme.article.license
|
|
} else if (proj?.license != null) {
|
|
if (proj.license == true) {
|
|
license = theme.article.license
|
|
} else {
|
|
license = proj.license
|
|
}
|
|
}
|
|
} else if (page.layout == 'post') {
|
|
if (theme.article.license && (page.license != false)) {
|
|
license = page.license || theme.article.license
|
|
}
|
|
} else if (page.license) {
|
|
license = page.license === true ? theme.article.license : page.license
|
|
}
|
|
if (license?.length > 0) {
|
|
var author = null
|
|
if (theme.authors) {
|
|
if (page.author?.length > 0 && theme.authors[page.author] != null) {
|
|
author = theme.authors[page.author]
|
|
} else {
|
|
author = theme.default_author
|
|
}
|
|
}
|
|
if (author) {
|
|
license = license.replace('{author.name}', author.name).replace('{author.url}', author.url)
|
|
}
|
|
el += `
|
|
<section id="license">
|
|
<div class="header"><span>${__('meta.license')}</span></div>
|
|
<div class="body">${markdown(license)}</div>
|
|
</section>
|
|
`
|
|
}
|
|
|
|
var showSharePlugin = false
|
|
if (page.wiki) {
|
|
const proj = theme.wiki.tree[page.wiki]
|
|
if (page.share != null) {
|
|
showSharePlugin = page.share == true
|
|
} else if (proj != null) {
|
|
showSharePlugin = proj.share == true
|
|
}
|
|
} else if (page.layout == 'post') {
|
|
showSharePlugin = page.share != false
|
|
} else if (page.share) {
|
|
showSharePlugin = true
|
|
}
|
|
if (theme.article.share && showSharePlugin) {
|
|
function socialButtons() {
|
|
var el = ''
|
|
theme.article.share.forEach((item, i) => {
|
|
if (['wechat', 'weibo', 'email', 'link'].includes(item)) {
|
|
el += '<a class="social share-item ' + item + '"';
|
|
if (item == 'weibo') {
|
|
el += ' target="_blank" rel="external nofollow noopener noreferrer"';
|
|
}
|
|
if (item == 'wechat') {
|
|
el += ' onclick="util.toggle("qrcode-wechat")"';
|
|
} else if (item == 'weibo') {
|
|
el += ' href="https://service.weibo.com/share/share.php?url=' + page.permalink;
|
|
el += '&title=' + page.title + ' - ' + config.title;
|
|
if (page.layout == 'post' && page.cover) {
|
|
el += '&pics=' + page.cover;
|
|
} else if (page.wiki && page.icon) {
|
|
el += '&pics=' + page.icon;
|
|
}
|
|
el += '&summary=' + truncate(page.description || strip_html(page.excerpt || page.content), {length: 120});
|
|
el += '"';
|
|
} else if (item == 'email') {
|
|
el += ' href="mailto:?subject=' + page.title + ' - ' + config.title + '&'
|
|
el += 'body=' + page.permalink + '"';
|
|
} else if (item == 'link') {
|
|
el += ' onclick="util.copy("copy-link", "' + __('message.copied') + '")"';
|
|
}
|
|
el += '>';
|
|
el += icon(`share:${item}`)
|
|
el += '</a>';
|
|
}
|
|
});
|
|
return el;
|
|
}
|
|
function qrcode() {
|
|
if (theme.article.share.includes('wechat')) {
|
|
return `
|
|
<div class="qrcode" id="qrcode-wechat" style="opacity:0;height:0">
|
|
<img src="https://api.qrserver.com/v1/create-qr-code/?size=256x256&data=${page.permalink}"/>
|
|
</div>
|
|
`
|
|
} else {
|
|
return ''
|
|
}
|
|
}
|
|
el += `
|
|
<section id="share">
|
|
<div class="header"><span>${__('meta.share')}</span></div>
|
|
<div class="body">
|
|
<div class="link"><input class="copy-area" readonly="true" id="copy-link" value="${page.permalink}" /></div>
|
|
<div class="social-wrap dis-select">${socialButtons()}</div>
|
|
${qrcode()}
|
|
</div>
|
|
</section>
|
|
`
|
|
}
|
|
|
|
el += '</div>';
|
|
return el;
|
|
}
|
|
%>
|
|
<%- layoutDiv(); %>
|