模板格式化

This commit is contained in:
xing 2022-09-19 00:16:40 +08:00
parent 147d382a1a
commit 979740bebc
5 changed files with 199 additions and 178 deletions

View File

@ -26,8 +26,8 @@ func SetupRouter() *gin.Engine {
}, },
}) })
reader := templates.NewFsTemplate(r.FuncMap) reader := templates.NewFsTemplate(r.FuncMap)
reader.AddTemplate("index", "posts/index.html", "layout/*.html") reader.AddTemplate("index", "posts/index.gohtml", "layout/*.gohtml")
reader.AddTemplate("detail", "posts/detail.html", "layout/*.html") reader.AddTemplate("detail", "posts/detail.gohtml", "layout/*.gohtml")
r.HTMLRender = reader r.HTMLRender = reader
r.Use(middleware.SetStaticFileCache) r.Use(middleware.SetStaticFileCache)
//gzip 因为一般会用nginx做反代时自动使用gzip,所以go这边本身可以不用 //gzip 因为一般会用nginx做反代时自动使用gzip,所以go这边本身可以不用

View File

@ -1,7 +1,7 @@
{{define "layout/footer"}} {{define "layout/footer"}}
<div class="site-info"> <div class="site-info">
<a href="https://cn.wordpress.org/" class="imprint">自豪地采用WordPress</a> <a href="https://cn.wordpress.org/" class="imprint">自豪地采用WordPress</a>
</div> </div>
{{end}} {{end}}

View File

@ -1,10 +1,10 @@
{{define "layout/page"}} {{define "layout/page"}}
{{if .pagination}} {{if .pagination}}
<nav class="navigation pagination" aria-label="文章"> <nav class="navigation pagination" aria-label="文章">
<h2 class="screen-reader-text">文章导航</h2> <h2 class="screen-reader-text">文章导航</h2>
<div class="nav-links"> <div class="nav-links">
{{.pagination|unescaped}} {{.pagination|unescaped}}
</div> </div>
</nav> </nav>
{{end}} {{end}}
{{end}} {{end}}

View File

@ -1,5 +1,5 @@
{{define "layout/sidebar" }} {{define "layout/sidebar" }}
<div id="widget-area" class="widget-area" role="complementary"> <div id="widget-area" class="widget-area" role="complementary">
<aside id="search-2" class="widget widget_search"> <aside id="search-2" class="widget widget_search">
<form role="search" method="get" class="search-form" action="/"> <form role="search" method="get" class="search-form" action="/">
<label> <label>
@ -31,7 +31,8 @@
<nav aria-label="归档"> <nav aria-label="归档">
<ul> <ul>
{{range $k,$v := .archives}} {{range $k,$v := .archives}}
<li><a href="/p/date/{{$v.Year}}/{{$v.Month|printf "%02s"}}">{{$v.Year}}年{{$v.Month}}月</a></li> <li><a href="/p/date/{{$v.Year}}/{{$v.Month|printf "%02s"}}">{{$v.Year}}年{{$v.Month}}月</a>
</li>
{{end}} {{end}}
</ul> </ul>
@ -41,7 +42,8 @@
<nav aria-label="分类"> <nav aria-label="分类">
<ul> <ul>
{{range $k,$v := .categories}} {{range $k,$v := .categories}}
<li class="cat-item cat-item-{{$v.WpTerms.TermId}}"><a href="/p/category/{{$v.Name}}">{{$v.Name}}</a> <li class="cat-item cat-item-{{$v.WpTerms.TermId}}"><a
href="/p/category/{{$v.Name}}">{{$v.Name}}</a>
{{end}} {{end}}
</ul> </ul>
@ -59,5 +61,5 @@
</nav> </nav>
</aside> </aside>
</div> </div>
{{end}} {{end}}

View File

@ -1,24 +1,23 @@
{{template "layout/base" .}} {{template "layout/base" .}}
{{define "content"}} {{define "content"}}
<div id="primary" class="content-area"> <div id="primary" class="content-area">
<main id="main" class="site-main"> <main id="main" class="site-main">
<article id="post-{{.post.Id}}"
class="post-{{.post.Id}} post type-post status-publish format-standard hentry category-uncategorized">
<article id="post-{{.post.Id}}" class="post-{{.post.Id}} post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header"> <header class="entry-header">
<h1 class="entry-title">{{.post.PostTitle}}</h1> </header><!-- .entry-header --> <h1 class="entry-title">{{.post.PostTitle}}</h1></header><!-- .entry-header -->
<div class="entry-content"> <div class="entry-content">
{{.post.PostContent|unescaped}} {{.post.PostContent|unescaped}}
</div><!-- .entry-content --> </div><!-- .entry-content -->
<footer class="entry-footer"> <footer class="entry-footer">
<span class="posted-on"> <span class="posted-on">
<span class="screen-reader-text">发布于 </span> <span class="screen-reader-text">发布于 </span>
<a href="/p/{{.post.Id}}" rel="bookmark"> <a href="/p/{{.post.Id}}" rel="bookmark">
<time class="entry-date published updated" datetime="{{.post.PostDateGmt}}">{{.post.PostDate|dateCh}} <time class="entry-date published updated"
datetime="{{.post.PostDateGmt}}">{{.post.PostDate|dateCh}}
</time> </time>
</a> </a>
</span> </span>
@ -51,18 +50,36 @@
<article id="div-comment-1" class="comment-body"> <article id="div-comment-1" class="comment-body">
<footer class="comment-meta"> <footer class="comment-meta">
<div class="comment-author vcard"> <div class="comment-author vcard">
<img alt="" src="http://1.gravatar.com/avatar/d7a973c7dab26985da5f961be7b74480?s=56&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/d7a973c7dab26985da5f961be7b74480?s=112&amp;d=mm&amp;r=g 2x" class="avatar avatar-56 photo" height="56" width="56" loading="lazy"> <b class="fn"><a href="https://cn.wordpress.org/" rel="external nofollow ugc" class="url">一位WordPress评论者</a></b><span class="says">说道:</span> </div><!-- .comment-author --> <img alt=""
src="http://1.gravatar.com/avatar/d7a973c7dab26985da5f961be7b74480?s=56&amp;d=mm&amp;r=g"
srcset="http://1.gravatar.com/avatar/d7a973c7dab26985da5f961be7b74480?s=112&amp;d=mm&amp;r=g 2x"
class="avatar avatar-56 photo" height="56" width="56" loading="lazy">
<b class="fn">
<a href="https://cn.wordpress.org/" rel="external nofollow ugc"
class="url">一位WordPress评论者</a>
</b>
<span class="says">说道:</span></div><!-- .comment-author -->
<div class="comment-metadata"> <div class="comment-metadata">
<a href="/p/1#comment-1"><time datetime="2022-08-19T09:26:37+08:00">2022年 8月 19日 上午9:26</time></a> </div><!-- .comment-metadata --> <a href="/p/1#comment-1">
<time datetime="2022-08-19T09:26:37+08:00">2022年 8月 19日 上午9:26</time>
</a></div><!-- .comment-metadata -->
</footer><!-- .comment-meta --> </footer><!-- .comment-meta -->
<div class="comment-content"> <div class="comment-content">
<p>您好,这是一条评论。若需要审核、编辑或删除评论,请访问仪表盘的评论界面。评论者头像来自 <a href="https://cn.gravatar.com/">Gravatar</a>。</p> <p>您好,这是一条评论。若需要审核、编辑或删除评论,请访问仪表盘的评论界面。评论者头像来自 <a
href="https://cn.gravatar.com/">Gravatar</a>。</p>
</div><!-- .comment-content --> </div><!-- .comment-content -->
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/p/1?replytocom=1#respond" data-commentid="1" data-postid="1" data-belowelement="div-comment-1" data-respondelement="respond" data-replyto="回复给一位WordPress评论者" aria-label="回复给一位WordPress评论者">回复</a></div> </article><!-- .comment-body --> <div class="reply">
<a rel="nofollow" class="comment-reply-link"
href="/p/1?replytocom=1#respond" data-commentid="1" data-postid="1"
data-belowelement="div-comment-1" data-respondelement="respond"
data-replyto="回复给一位WordPress评论者"
aria-label="回复给一位WordPress评论者">回复</a>
</div>
</article><!-- .comment-body -->
</li><!-- #comment-## --> </li><!-- #comment-## -->
</ol><!-- .comment-list --> </ol><!-- .comment-list -->
@ -70,33 +87,35 @@
<div id="respond" class="comment-respond"> <div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">发表回复 <h3 id="reply-title" class="comment-reply-title">发表回复
<small> <small>
<a rel="nofollow" <a rel="nofollow" id="cancel-comment-reply-link" href="/p/{{.post.Id}}#respond" style="display:none;">取消回复</a>
id="cancel-comment-reply-link" href="/p/{{.post.Id}}#respond"
style="display:none;">取消回复</a>
</small> </small>
</h3> </h3>
<form action="/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate=""> <form action="/wp-comments-post.php" method="post" id="commentform" class="comment-form"
<p class="comment-notes"><span id="email-notes">您的电子邮箱地址不会被公开。</span> <span novalidate="">
class="required-field-message" aria-hidden="true">必填项已用<span class="required" <p class="comment-notes">
aria-hidden="true">*</span>标注</span> <span id="email-notes">您的电子邮箱地址不会被公开。</span>
<span class="required-field-message" aria-hidden="true">必填项已用<span class="required" aria-hidden="true">*</span>标注</span>
</p> </p>
<p class="comment-form-comment"><label for="comment">评论 <span class="required" aria-hidden="true">*</span></label> <p class="comment-form-comment">
<textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" <label for="comment">评论 <span class="required" aria-hidden="true">*</span></label>
required=""></textarea></p> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required=""></textarea></p>
<p class="comment-form-author"><label for="author">显示名称 <span class="required" <p class="comment-form-author">
aria-hidden="true">*</span></label> <label for="author">显示名称 <span class="required" aria-hidden="true">*</span></label>
<input id="author" name="author" type="text" value="" size="30" maxlength="245" required=""></p> <input id="author" name="author" type="text" value="" size="30" maxlength="245"
<p class="comment-form-email"><label for="email">电子邮箱地址 <span class="required" required=""></p>
aria-hidden="true">*</span></label> <p class="comment-form-email">
<label for="email">电子邮箱地址 <span class="required" aria-hidden="true">*</span></label>
<input id="email" name="email" type="email" value="" size="30" maxlength="100" <input id="email" name="email" type="email" value="" size="30" maxlength="100"
aria-describedby="email-notes" required=""></p> aria-describedby="email-notes" required="">
</p>
<p class="comment-form-url"><label for="url">网站地址</label> <p class="comment-form-url"><label for="url">网站地址</label>
<input id="url" name="url" type="url" value="" size="30" maxlength="200"></p> <input id="url" name="url" type="url" value="" size="30" maxlength="200"></p>
<p class="comment-form-cookies-consent"> <p class="comment-form-cookies-consent">
<input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"> <input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes">
<label for="wp-comment-cookies-consent">在此浏览器中保存我的显示名称、邮箱地址和网站地址,以便下次评论时使用。</label> <label for="wp-comment-cookies-consent">在此浏览器中保存我的显示名称、邮箱地址和网站地址,以便下次评论时使用。</label>
</p> </p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="发表评论"> <p class="form-submit">
<input name="submit" type="submit" id="submit" class="submit" value="发表评论">
<input type="hidden" name="comment_post_ID" value="{{.post.Id}}" id="comment_post_ID"> <input type="hidden" name="comment_post_ID" value="{{.post.Id}}" id="comment_post_ID">
<input type="hidden" name="comment_parent" id="comment_parent" value="0"> <input type="hidden" name="comment_parent" id="comment_parent" value="0">
</p> </p>
@ -129,5 +148,5 @@
</div> </div>
</nav> </nav>
</main><!-- .site-main --> </main><!-- .site-main -->
</div> </div>
{{end}} {{end}}