video: New page.
This commit is contained in:
parent
d51b493ae0
commit
6afd723af9
3 changed files with 30 additions and 0 deletions
18
pinaxcon/templates/static_pages/video.html
Normal file
18
pinaxcon/templates/static_pages/video.html
Normal 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 %}
|
11
pinaxcon/templates/static_pages/video.md
Normal file
11
pinaxcon/templates/static_pages/video.md
Normal 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!
|
|
@ -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"),
|
||||
|
|
Loading…
Reference in a new issue