b3log-solo skin 5style for 0.5.0

This commit is contained in:
noday
2012-09-06 20:07:04 +08:00
parent 7b3dae6d52
commit 3c076a4d33
38 changed files with 2132 additions and 0 deletions

43
5styles/page.ftl Normal file
View File

@@ -0,0 +1,43 @@
<#include "macro-head.ftl">
<#include "macro-comments.ftl">
<!DOCTYPE html>
<html>
<head>
<@head title="${page.pageTitle} - ${blogTitle}">
<meta name="keywords" content="${metaKeywords},${page.pageTitle}" />
<meta name="description" content="${metaDescription}" />
</@head>
</head>
<body>
${topBarReplacement}
<div id="wrap">
<#include "header.ftl">
<div id="main">
<div id="maincontent">
<div class="forFlow">
<div class="navigation-top shortline">
<span>${breadcrumbNaviLabel}</span>
<a href="/">${homeLabel}</a> > <a title="${page.pageTitle}">${page.pageTitle}</a>
</div>
<div class="post">
<h2 class="post-tltle breakline">
${page.pageTitle}
</h2>
<div class="article-body breakline">
${page.pageContent}
</div>
</div>
<@comments commentList=pageComments article=page></@comments>
</div>
</div>
<div id="sidebar">
<#include "side.ftl">
</div>
</div>
<div id="footer">
<#include "footer.ftl">
</div>
</div>
<@comment_script oId=page.oId></@comment_script>
</body>
</html>