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 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.title == "categories")
7
+ else if (is_category() || page.type == "categories")
8
8
  layout = "categories";
9
- else if (is_tag() || page.title == "tags")
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
@@ -38,7 +38,7 @@
38
38
  </span>
39
39
  <% } %>
40
40
  </div>
41
- <% if (typeof page.password != "undefined" && theme.crypto.enable) { %>
41
+ <% if (typeof page.password !== "undefined" && theme.crypto.enable) { %>
42
42
  <%
43
43
  const CryptoJS = crypto();
44
44
  function SHA(str) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hexo-theme-particlex",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "A concise Hexo theme, based on Particle.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -41,7 +41,7 @@ function showimg() {
41
41
  window.addEventListener("resize", () => hide());
42
42
  }
43
43
  function rendermath() {
44
- if (typeof renderMathInElement != "undefined")
44
+ if (typeof renderMathInElement !== "undefined")
45
45
  renderMathInElement(document.body, {
46
46
  delimiters: [
47
47
  { left: "$$", right: "$$", display: true },