31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
<#include "macro-head.ftl">
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<@head title="${archiveDate.archiveDateMonth} ${archiveDate.archiveDateYear} (${archiveDate.archiveDatePublishedArticleCount}) - ${blogTitle}">
|
|
<meta name="keywords" content="${metaKeywords},${archiveDate.archiveDateYear}${archiveDate.archiveDateMonth}"/>
|
|
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
|
</@head>
|
|
<link rel="stylesheet" type="text/css" href="${staticServePath}/skins/${skinDirName}/css/style${miniPostfix}.css?${staticResourceVersion}" media="all" />
|
|
</head>
|
|
<body id="blog">
|
|
<div id="wrap">
|
|
<#include "header-articel.ftl">
|
|
<div id="content" class="clear">
|
|
<div id="main" class="left">
|
|
<h2 class="pagetitle">${archive1Label}
|
|
<#if "en" == localeString?substring(0, 2)>
|
|
${archiveDate.archiveDateMonth} ${archiveDate.archiveDateYear} (${archiveDate.archiveDatePublishedArticleCount})
|
|
<#else>
|
|
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel} (${archiveDate.archiveDatePublishedArticleCount})
|
|
</#if>
|
|
</h2>
|
|
<#include "article-list.ftl">
|
|
</div>
|
|
<#include "side.ftl">
|
|
</div>
|
|
<#include "footer.ftl">
|
|
</div>
|
|
</body>
|
|
</html>
|