playlist.html 341 B

12345678910111213141516171819
  1. <section class="playlists">
  2. <header>
  3. <h1>{{ include.title }}</h1>
  4. </header>
  5. <hr>
  6. <p>
  7. {{ include.description }}
  8. </p>
  9. <ul class="playlist">
  10. {% for video in include.videos %}
  11. <li>
  12. <a href="{{ playlist_slug }}{{ video.slug }}">
  13. {{ video.title }}
  14. </a>
  15. </li>
  16. {% endfor %}
  17. </ul>
  18. </section>