Skip to content

Commit

Permalink
fix /latest posts messing with cf32
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Aug 14, 2024
1 parent ae954f0 commit 950cad8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions faithful32xLatest.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

{%- assign found = false -%}
{%- for post in site.posts -%}
{%- if post.path contains "C32" and found == false -%}
{%- if post.path contains "-C32" and found == false -%}
{{ post }}
{%- assign found = true -%}
{%- elsif post.path contains "F32" and found == false -%}
{%- elsif post.path contains "-F32" and found == false -%}
{{ post }}
{%- assign found = true -%}
{%- endif -%}
Expand Down
4 changes: 2 additions & 2 deletions faithful64xLatest.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

{%- assign found = false -%}
{%- for post in site.posts -%}
{%- if post.path contains "C64" and found == false -%}
{%- if post.path contains "-C64" and found == false -%}
{{ post }}
{%- assign found = true -%}
{%- elsif post.path contains "F64" and found == false -%}
{%- elsif post.path contains "-F64" and found == false -%}
{{ post }}
{%- assign found = true -%}
{%- endif -%}
Expand Down

0 comments on commit 950cad8

Please sign in to comment.