Skip to content

Commit

Permalink
Merge pull request #223 from Hacker0x01/tomdev/add-sessions-overview
Browse files Browse the repository at this point in the history
Add sessions overview page
  • Loading branch information
iMartzen committed Apr 22, 2024
2 parents 7256093 + 2e48475 commit 770ae51
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sessions/sessions.html
@@ -0,0 +1,14 @@
---
layout: page
title: Sessions
permalink: /sessions/
---

{% for child_page in site.pages %}
{% assign target_dir = 'sessions/' %}
{% if child_page.path contains target_dir and child_page.path != page.path %}
<li>
<a href="{{ child_page.url | relative_url }}">{{ child_page.title }}</a>
</li>
{% endif %}
{% endfor %}

0 comments on commit 770ae51

Please sign in to comment.