Changeset - 6afd723af9a3
[Not reviewed]
0 1 2
Brett Smith - 4 years ago 2019-10-10 18:28:30
brettcsmith@brettcsmith.org
video: New page.
3 files changed with 30 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/video.html
Show inline comments
 
new file 100644
 
{% 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 %}
pinaxcon/templates/static_pages/video.md
Show inline comments
 
new file 100644
 
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!
pinaxcon/urls.py
Show inline comments
...
 
@@ -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"),
0 comments (0 inline, 0 general)