diff --git a/layout/_partial/widgets/markdown.ejs b/layout/_partial/widgets/markdown.ejs index a243468..6241f89 100644 --- a/layout/_partial/widgets/markdown.ejs +++ b/layout/_partial/widgets/markdown.ejs @@ -1,6 +1,6 @@ <% function layoutDiv() { - if (!item.content?.length) return '' + if (!item.content?.length && !item.src?.length) return '' var el = ''; el += ''; if (item.title?.length > 0) { @@ -9,7 +9,12 @@ function layoutDiv() { el += ''; } el += '
'; - el += markdown(item.content); + if (item.content) { + el += markdown(item.content); + } + if (item.src) { + el += `
` + } el += '
'; el += '
'; return el;