video: New page.

This commit is contained in:
Brett Smith 2019-10-10 14:28:30 -04:00
parent d51b493ae0
commit 6afd723af9
3 changed files with 30 additions and 0 deletions

View file

@ -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 %}

View file

@ -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!

View file

@ -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"),