diff --git a/pinaxcon/templates/static_pages/video.html b/pinaxcon/templates/static_pages/video.html new file mode 100644 index 0000000000000000000000000000000000000000..24cdfc730d0aa8b08b72dd5135e9289f5384c5f3 --- /dev/null +++ b/pinaxcon/templates/static_pages/video.html @@ -0,0 +1,18 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} +{% load markdown_deux_tags %} + +{% block head_title %}Videos{% endblock %} + +{% block heading %}Videos{% endblock %} + +{% block body_class %}videos{% endblock %} + +{% block content %} + {% markdown %} + +{% include "static_pages/videos.md" %} + + {% endmarkdown %} +{% endblock %} diff --git a/pinaxcon/templates/static_pages/video.md b/pinaxcon/templates/static_pages/video.md new file mode 100644 index 0000000000000000000000000000000000000000..b1c5ed7bf96114dbcad27e55c932d5dd2998b360 --- /dev/null +++ b/pinaxcon/templates/static_pages/video.md @@ -0,0 +1,11 @@ +We plan to stream and record all sessions at CopyleftConf. + +## Videos from CopyleftConf 2019 + +Videos of some of the presentations from CopyleftConf 2019 are available: + +* [on Internet Archive](https://archive.org/details/@sfconservancy?and[]=subject%3A%22copyleftconf2019%22) + +* [on YouTube](https://www.youtube.com/playlist?list=PLKZPkdh3W2BKiSmBfq8GBx3pv_d8qZoNg) + +More videos from the event are still to come! diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 8ff59682f7dce6d18895c6ea027e8d32da3086a2..79b2413d85ff5522cf7914970d19e9c92bbd6772 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -20,6 +20,7 @@ urlpatterns = [ # about url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"), url(r"^about/venue$", TemplateView.as_view(template_name="static_pages/venue.html"), name="venue"), + url(r"^video$", TemplateView.as_view(template_name="static_pages/video.html"), name="video"), # program url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),