We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7414b2 commit 219a622Copy full SHA for 219a622
2 files changed
_pages/tech.md
@@ -29,8 +29,8 @@ permalink: /tech/
29
{% endfor %}
30
31
<!-- Regular tech posts (excluding pinned ones) -->
32
- {% assign regular_tech_posts = site.posts | where: "pinned", nil | where_exp: "post", "post.tags contains 'tech'" %}
33
- {% for post in regular_tech_posts %}
+{% for post in site.posts %}
+ {% if post.tags contains 'tech' and post.pinned != true %}
34
<article>
35
<small>
36
Published: {{ post.date | date_to_string }}
@@ -48,5 +48,6 @@ permalink: /tech/
48
</div>
49
{% endif %}
50
</article>
51
- {% endfor %}
+ {% endif %}
52
+{% endfor %}
53
assets/main.scss
@@ -3,6 +3,7 @@
3
4
@import "minima";
5
6
+// Your custom CSS goes here
7
8
.site-header {
9
border-top: none;
0 commit comments