Skip to content

Commit a775d7a

Browse files
committed
fix syntax error
1 parent 713f87f commit a775d7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_pages/books.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permalink: /books/
1515
{% endfor %}
1616

1717
<!-- Regular book posts (excluding pinned ones) -->
18-
{% assign regular_book_posts = site.posts | where_exp: "post", "post.tags contains 'books' and post.pinned != true" %}
18+
{% assign regular_book_posts = site.posts | where_exp: "post", "post.tags contains \"books\" and post.pinned != true" %}
1919
{% for post in regular_book_posts %}
2020
<article>
2121
<small>

_pages/tech.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permalink: /tech/
1515
{% endfor %}
1616

1717
<!-- Regular tech posts (excluding pinned ones) -->
18-
{% assign regular_tech_posts = site.posts | where_exp: "post", "post.tags contains 'tech' and post.pinned != true" %}
18+
{% assign regular_tech_posts = site.posts | where_exp: "post", "post.tags contains \"tech\" and post.pinned != true" %}
1919
{% for post in regular_tech_posts %}
2020
<article>
2121
<small>

0 commit comments

Comments
 (0)