Signed-off-by: Vanessa <lly219@gmail.com>

This commit is contained in:
Vanessa
2012-05-28 23:48:41 +08:00
commit db579cd60a
394 changed files with 16528 additions and 0 deletions

47
andrea/header.ftl Normal file
View File

@@ -0,0 +1,47 @@
<div class="header">
<div class="left">
<h1>
<a href="${servePath}">
${blogTitle}
</a>
</h1>
<span class="sub-title">${blogSubtitle}</span>
<div>
<span>
${viewCount1Label}
<span class='error-msg'>
${statistic.statisticBlogViewCount}
</span>
</span>
<span>
${articleCount1Label}
<span class='error-msg'>
${statistic.statisticPublishedBlogArticleCount}
</span>
</span>
<span>
${commentCount1Label}
<span class='error-msg'>
${statistic.statisticPublishedBlogCommentCount}
</span>
</span>
</div>
<span class="clear"></span>
</div>
<div class="right">
<ul>
<li>
<a rel="nofollow" class="home" href="${servePath}">Blog</a>
</li>
<li>
<a href="${servePath}/tags.html">Tags</a>
</li>
<li>
<a rel="alternate" href="${servePath}/blog-articles-feed.do">
Atom
</a>
</li>
</ul>
</div>
<div class="clear"></div>
</div>