|
@@ -1,15 +1,16 @@
|
1
|
1
|
{{ template "theme/partials/head.html" . }}
|
2
|
2
|
<body>
|
3
|
3
|
|
4
|
|
-{{ template "theme/partials/sidebar.html" . }}
|
|
4
|
+ {{ template "theme/partials/sidebar.html" . }}
|
5
|
5
|
|
6
|
|
- <div class="content container">
|
7
|
|
- <ul class="posts">
|
8
|
|
- {{ range .Data.Pages }}
|
9
|
|
- <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</h4></time></span></span></li>
|
10
|
|
- {{ end }}
|
11
|
|
- </ul>
|
12
|
|
- </div>
|
13
|
|
-
|
14
|
|
- </body>
|
|
6
|
+ <div class="content container">
|
|
7
|
+ <ul class="posts">
|
|
8
|
+ {{ range .Data.Pages }}
|
|
9
|
+ <li>
|
|
10
|
+ <span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
|
|
11
|
+ </li>
|
|
12
|
+ {{ end }}
|
|
13
|
+ </ul>
|
|
14
|
+ </div>
|
|
15
|
+</body>
|
15
|
16
|
</html>
|