hexo-theme-clarity 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/layout/link.pug
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
extends base
|
|
2
|
+
|
|
3
|
+
block title
|
|
4
|
+
title= page.title + ' | ' + config.title
|
|
5
|
+
|
|
6
|
+
block content
|
|
7
|
+
.page
|
|
8
|
+
- let title_style = {'text-align': page.title_align || undefined}
|
|
9
|
+
h1.page-title(style=title_style)= page.title
|
|
10
|
+
.page-content
|
|
11
|
+
//- != page.content
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
if page.donate
|
|
17
|
+
include _widget/donate.pug
|
|
18
|
+
if page.comments
|
|
19
|
+
include _partial/comments.pug
|
|
20
|
+
|
|
21
|
+
block scripts
|
|
22
|
+
if page.comments
|
|
23
|
+
include _partial/comment_scripts.pug
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|