Skip to content

Commit

Permalink
fixing links on track marketing pages
Browse files Browse the repository at this point in the history
  • Loading branch information
lauramoore committed Dec 12, 2023
1 parent 3ded633 commit c508af3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
safe: true
exclude: ['_presite_plugins', 'README.md', '_move_to_arhcive.html']
title: Devnexus 2024
dates: Apr 9-11, 2024
timezone: UTC
active-header: navigation-before-schedule.html
cfp-is-open: false
Expand Down
2 changes: 1 addition & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div>
{% include inline-social.html %}
<ul class="list-inline hero-date-location">
{% assign dates = page.dates | default: "00-99 XXX" %}
{% assign dates = site.dates | default: "00-99 XXX" %}
<li><img src="/assets/img/calendar.png"/>{{ dates | escape }}</li>
<li><img src="/assets/img/location.png"/>Atlanta, GA</li>
</ul>
Expand Down
23 changes: 23 additions & 0 deletions index-agile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
layout: home
permalink: /presentations/agile
dates: Apr 4 2023
branding:
img: /assets/img/dev-nexus-logo-large.png
alt: Devnexus 2024
---
{% assign events = site.events | where: "track", "Agile" | sort: "name" %}
<div class="featured-header">
<h1>AGILE</h1>
</div>

{% for session in events %}
<div class="workshop-promo-row">
<h2><a href="/presentations/{{session.slug}}">{{session.title}}</a></h2>
{% for speaker in session.speakers %}
{% include workshop_speaker.html data = speaker %}
{% endfor %}
</div>
{% endfor %}

<a href="/presentations" class="btn btn-square btn-square btn-speakers center-block">SEE ALL SESSIONS</a>

0 comments on commit c508af3

Please sign in to comment.