';
-
+ el += '';
return el;
}
+function div_photo() {
+ var el = '';
+ el += '
';
+ el += '
';
+ el += '
';
+ el += '';
+ el += __("meta.created") + ' ' + '';
+ el += '';
+ el += '
';
+ el += '
';
+
+ el += '
';
+ el += '';
+ el += post.title;
+ el += '
';
+ el += '';
+ return el;
+}
+function div() {
+ if (post.cover && post.cover.length > 0) {
+ return div_photo();
+ }
+ return div_default();
+}
%>
-<%- layoutDiv() %>
+<%- div() %>
diff --git a/layout/_partial/main/post_list/wiki_card.ejs b/layout/_partial/main/post_list/wiki_card.ejs
index 96303af..456f33b 100644
--- a/layout/_partial/main/post_list/wiki_card.ejs
+++ b/layout/_partial/main/post_list/wiki_card.ejs
@@ -1,6 +1,7 @@
<%
function layoutDiv() {
var el = '';
+ el += '
';
if (proj.logo && proj.logo.src) {
el += '';
el += '
' + proj.description + '';
}
el += '
';
+ el += '';
return el;
}
%>
diff --git a/layout/index.ejs b/layout/index.ejs
index 33c6424..3e6373c 100755
--- a/layout/index.ejs
+++ b/layout/index.ejs
@@ -12,10 +12,13 @@ if (page.title && page.wiki) {
function layout_post_card(layout, post, content) {
var el = '';
+ var layout = layout;
+ if (layout == 'post' && post.cover != undefined) {
+ layout += ' photo';
+ }
el += '
';
- el += '';
el += content;
- el += '';
+ el += '';
return el;
}
diff --git a/layout/layout.ejs b/layout/layout.ejs
index 5e7199c..1e1e36b 100755
--- a/layout/layout.ejs
+++ b/layout/layout.ejs
@@ -2,7 +2,7 @@
<%- partial('_partial/head') %>
- <%- partial('_partial/main/article/wiki_cover') %>
+ <%- partial('_partial/cover/index') %>