Skip to content

Commit

Permalink
feat(trainings): remove date from trainings
Browse files Browse the repository at this point in the history
Signed-off-by: slonka <[email protected]>
  • Loading branch information
slonka committed Jun 19, 2023
1 parent ca1dd43 commit 9aa3927
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions _includes/training.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="item {% if post.star %}star{% endif %}">
<a class="url" href="{{ post.url }}">
<h3 class="title">{{ post.title }}</h3>
</a>
</div>
4 changes: 2 additions & 2 deletions trainings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{% for post in paginator.posts %}
{% if post.category == 'trainings' %}
{% if post.hidden != true %}
{% include blog-post.html %}
{% include training.html %}
{% endif %}
{% endif %}
{% endfor %}
Expand All @@ -22,7 +22,7 @@
{% for post in site.posts %}
{% if post.category == 'trainings' %}
{% if post.hidden != true %}
{% include blog-post.html %}
{% include training.html %}
{% endif %}
{% endif %}
{% endfor %}
Expand Down

0 comments on commit 9aa3927

Please sign in to comment.