index.html 557 B

123456789101112131415161718192021222324252627
  1. ---
  2. layout: default
  3. title: Playlists
  4. ---
  5. <section class="playlists">
  6. {% include page-title.html %}
  7. <hr>
  8. <p>
  9. Talks, screencast, video chats, webinars, and other media covering asorted
  10. software development topics.
  11. </p>
  12. <dl class="playlist">
  13. {% for list in site.data.playlists %}
  14. {% assign playlist = list[1] %}
  15. <dt>
  16. <a rel="noopener" href="{{ playlist.slug | prepend: site.baseurl }}">
  17. {{ playlist.title }}
  18. </a>
  19. </dt>
  20. <dd>
  21. {{ playlist.description }}
  22. </dd>
  23. {%endfor%}
  24. </dl>
  25. </section>