16 | {{#foreach posts}}
17 |
18 |
19 |
20 |
21 |
22 |
23 | {{excerpt words="15"}}
24 |
25 |
26 |
27 | {{/foreach}}
28 |
29 | {{!-- Previous/next page links - displayed on every page --}}
30 | {{pagination}}
31 |
--------------------------------------------------------------------------------
/partials/navigation.hbs:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/partials/pagination.hbs:
--------------------------------------------------------------------------------
1 | {{!-- Previous/next page links - displayed on every page --}}
2 | {{!-- pagination --}}
3 |
14 |
--------------------------------------------------------------------------------
/post.hbs:
--------------------------------------------------------------------------------
1 | {{!< default}}
2 |
3 | {{#post}}
4 |
5 | {{#if image}}
6 |
47 |
53 | {{else}}
54 |
73 |
77 | {{/if}}
78 |
79 |
80 |
81 |
84 |
104 |
105 |
106 |
107 |
108 | {{/post}}
109 | {{> "footer"}}
110 |
111 |
112 |
113 |
114 |
115 |
如果我的文章对你有帮助,或许可以打赏一下呀!
116 |
117 |
118 | 支付宝
119 |
120 |
![]()
121 |
122 |
123 |
124 | 微信
125 |
126 |
![]()
127 |
128 |
129 |
130 | QQ
131 |
132 |
![]()
133 |
134 |
135 |
136 |
137 |
138 |
139 |
--------------------------------------------------------------------------------
/tag.hbs:
--------------------------------------------------------------------------------
1 | {{!< default}}
2 | {{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
3 |
4 | {{!-- If we have a tag cover, display that - else blog cover - else nothing --}}
5 |
6 |
12 |
13 |
14 | {{#foreach posts}}
15 |
16 |
17 |
18 |
19 |
20 |
21 | {{excerpt characters="130"}}
22 |
23 |
24 |
25 | {{/foreach}}
26 | {{pagination}}
27 |
28 |
29 |
--------------------------------------------------------------------------------