26 lines
608 B
Plaintext
26 lines
608 B
Plaintext
<#include "macro-head.ftl">
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<#if authorName??>
|
|
<head>
|
|
<@head title="${authorName} - ${blogTitle}">
|
|
<meta name="keywords" content="${metaKeywords},${authorName}">
|
|
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>">
|
|
</@head>
|
|
</head>
|
|
<body>
|
|
<#include "side.ftl">
|
|
<main>
|
|
<h2 class="classify-name">
|
|
${author1Label}${authorName}
|
|
</h2>
|
|
<#include "article-list.ftl">
|
|
<#include "footer.ftl">
|
|
</main>
|
|
</body>
|
|
<#else>
|
|
<head>
|
|
<meta http-equiv="refresh" content="0;url=/">
|
|
</head>
|
|
</#if>
|
|
</html> |