hexo-theme-particlex 2.0.1 → 2.0.2
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/layout.ejs +2 -2
- package/layout/post.ejs +1 -1
- package/package.json +1 -1
- package/source/js/functions.js +1 -1
package/layout/layout.ejs
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
layout = "index";
|
5
5
|
else if (is_post())
|
6
6
|
layout = "post";
|
7
|
-
else if (is_category() || page.
|
7
|
+
else if (is_category() || page.type == "categories")
|
8
8
|
layout = "categories";
|
9
|
-
else if (is_tag() || page.
|
9
|
+
else if (is_tag() || page.type == "tags")
|
10
10
|
layout = "tags";
|
11
11
|
else if (is_archive() || is_year() || is_month())
|
12
12
|
layout = "archives";
|
package/layout/post.ejs
CHANGED
package/package.json
CHANGED
package/source/js/functions.js
CHANGED
@@ -41,7 +41,7 @@ function showimg() {
|
|
41
41
|
window.addEventListener("resize", () => hide());
|
42
42
|
}
|
43
43
|
function rendermath() {
|
44
|
-
if (typeof renderMathInElement
|
44
|
+
if (typeof renderMathInElement !== "undefined")
|
45
45
|
renderMathInElement(document.body, {
|
46
46
|
delimiters: [
|
47
47
|
{ left: "$$", right: "$$", display: true },
|