hexo-theme-stellar/layout/_partial/sidebar/logo.ejs

70 lines
2.5 KiB
Plaintext
Raw Normal View History

2021-06-26 15:02:32 +08:00
<%
2021-07-04 20:21:31 +08:00
var proj;
if (page.layout === 'wiki' && page.wiki) {
proj = theme.wiki.projects[page.wiki];
2021-06-26 15:02:32 +08:00
}
2021-07-07 23:56:41 +08:00
function layoutTitle(main, url, sub) {
var el = '';
el += '<a class="title" href="' + url_for(url || "/") + '">';
el += '<div class="main">' + main + '</div>';
if (sub) {
let arr = sub.split('|');
if (arr.length > 1) {
el += '<div class="sub normal cap">' + arr[0].trim() + '</div>';
el += '<div class="sub hover cap" style="opacity:0">' + arr[1].trim() + '</div>';
} else if (arr.length > 0) {
el += '<div class="sub cap">' + arr[0] + '</div>';
}
}
el += '</a>';
return el;
}
2021-06-26 15:02:32 +08:00
function layoutDiv() {
var el = '';
2021-08-25 21:47:31 +08:00
if (page.layout == 'wiki' && proj && proj.index != false) {
2021-06-26 15:02:32 +08:00
el += '<div class="logo-wrap wiki">';
// all products
el += '<a style="filter: grayscale(100%)" class="wiki-home cap" href="' + url_for(config.wiki_dir) + '">';
2021-07-03 20:49:52 +08:00
el += '<svg aria-hidden="true" viewBox="0 0 16 16" width="1rem" height="1rem" fill="currentColor"><path fill-rule="evenodd" d="M7.78 12.53a.75.75 0 01-1.06 0L2.47 8.28a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 1.06L4.81 7h7.44a.75.75 0 010 1.5H4.81l2.97 2.97a.75.75 0 010 1.06z"></path></svg>';
2021-06-26 15:02:32 +08:00
el += __('btn.all_wiki');
el += '</a>';
// this product
2021-07-26 22:26:46 +08:00
if (proj == undefined) {
2021-07-04 20:21:31 +08:00
// 如果没有项目名则使用menu中显示的名字
2021-06-26 15:02:32 +08:00
if (page.menu_id && theme.sidebar.menu[page.menu_id] && md_link(theme.sidebar.menu[page.menu_id])) {
2021-07-04 20:21:31 +08:00
proj = {
path: md_link(theme.sidebar.menu[page.menu_id]),
wiki: __(md_text(theme.sidebar.menu[page.menu_id]))
};
2021-06-26 15:02:32 +08:00
}
}
2021-07-26 22:26:46 +08:00
if (proj != undefined) {
2021-07-07 23:56:41 +08:00
let main = proj.title || proj.wiki || page.wiki || page.title;
2021-07-26 22:26:46 +08:00
let url = proj.homepage.path;
2021-07-07 23:56:41 +08:00
let sub = proj.subtitle;
el += layoutTitle(main, url, sub);
2021-06-26 15:02:32 +08:00
}
} else {
el += '<div class="logo-wrap">';
if (md_text(theme.sidebar.logo.avatar)) {
el += '<a class="avatar" href="' + url_for(md_link(theme.sidebar.logo.avatar) || "/") + '">';
2021-07-04 23:22:43 +08:00
if (theme.style.animated_avatar.animate) {
el += '<div class="bg" style="opacity:0;background-image:url(' + theme.style.animated_avatar.background + ');"></div>';
}
2021-06-26 15:02:32 +08:00
el += '<img no-lazy class="avatar" src="' + md_text(theme.sidebar.logo.avatar) + '">';
el += '</a>';
}
2021-07-07 23:56:41 +08:00
let main = md_text(theme.sidebar.logo.title);
if (main) {
let url = md_link(theme.sidebar.logo.title);
let sub = config.subtitle;
el += layoutTitle(main, url, sub);
2021-06-26 15:02:32 +08:00
}
}
el += '</div>';
return el;
}
%>
2021-07-03 20:49:52 +08:00
<%- layoutDiv() %>