' +
+ '
' +
+ article.articleAbstract +
+ '
' +
+ '
' +
+ '
' +
+ '';
+ if (article.hasUpdated) {
+ articlesHTML += Util.toDate(article.articleUpdateDate, 'yy-MM-dd HH:mm');
+ } else {
+ articlesHTML += Util.toDate(article.articleCreateDate, 'yy-MM-dd HH:mm');
+ }
+
+ articlesHTML += '
' + article.authorName + '' +
+ '
' +
+ '' +
+ Label.tag1Label + " ";
+
+ var articleTags = article.articleTags.split(",");
+ for (var j = 0; j < articleTags.length; j++) {
+ articlesHTML += '
' +
+ articleTags[j] + '';
+
+ if (j < articleTags.length - 1) {
+ articlesHTML += ", ";
+ }
+ }
+
+ articlesHTML += '
' +
+ '