Skip to content

Commit

Permalink
updated category_index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaswagner2826 committed Jan 22, 2024
1 parent 8d4ecc8 commit e9ec7e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions _includes/category_index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<div class="category_index">

{% assign posts = site.posts | where: "group", "{{page.title}}" %}
{% assign items = site.posts | where: "group", "{{ page.title }}" %}

{% for post in posts %}
{% for item in items %}
<div>
{{post.title}}
{{item.title}}
</div>
<div>
{{ post.content }}
{{ item.content }}
</div>
{% endfor %}

Expand Down
2 changes: 0 additions & 2 deletions _pages/research/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@ description:

{% include category_index.html %}



</div>
</div>

0 comments on commit e9ec7e0

Please sign in to comment.