hexo-theme-stellar/layout/_partial/widgets/markdown.ejs

19 lines
458 B
Plaintext
Raw Normal View History

2021-11-19 20:25:39 +08:00
<%
function layoutDiv() {
2022-11-22 22:38:01 +08:00
if (!item.content?.length) return ''
2021-11-19 20:25:39 +08:00
var el = '';
2022-11-23 21:54:21 +08:00
el += '<widget class="widget-wrapper markdown">';
2022-11-22 22:38:01 +08:00
if (item.title?.length > 0) {
2022-10-25 13:57:31 +08:00
el += '<div class="widget-header cap theme dis-select">';
2022-11-22 22:38:01 +08:00
el += '<span class="name">' + item.title + '</span>';
2021-11-19 20:25:39 +08:00
el += '</div>';
2022-11-22 22:38:01 +08:00
}
el += '<div class="widget-body fs14">';
el += markdown(item.content);
el += '</div>';
2022-11-23 21:54:21 +08:00
el += '</widget>';
2021-11-19 20:25:39 +08:00
return el;
}
%>
<%- layoutDiv() %>