diff options
author | luxagraf <sng@luxagraf.net> | 2012-11-23 10:08:08 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2012-11-23 10:08:08 -0500 |
commit | 400aecf5193d5ae5fa85300b0f7c1942103457b9 (patch) | |
tree | 2e904cc2da4f0d29a4ea2c421f4d09d4f544e886 | |
parent | 90a161b2195387d7d523c241ad9e79b42aff5d84 (diff) | |
parent | b827f4f38eeff43b7aefc1b17f5512325e68524d (diff) |
Merge branch 'master' of http://git.luxagraf.net/luxagraf
pulled in baby videos template
-rw-r--r-- | design/templates/details/babyvideos.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/design/templates/details/babyvideos.html b/design/templates/details/babyvideos.html new file mode 100644 index 0000000..007a6ea --- /dev/null +++ b/design/templates/details/babyvideos.html @@ -0,0 +1,34 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% block pagetitle %}Luxagraf | {{object.title}}{% endblock %} +{% block extrahead %} +<style> + +.vidwrap{ + position: relative; + padding-bottom: 56.25%; /* 16:9 */ + padding-top: 25px; + height: 0; +} +.vidwrap video, +.vidwrap embed, { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + max-width: 960px; +} +</style> +{% endblock %} +{% block metadescription %}{{object.metadescription}}{% endblock %} +{%block htmlclass%}class="dark single"{%endblock%} + +{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> + <li>{{object.title}}</li> + </ul> + <article role="main"> + {{object.body_html|safe}} + </article> +{% endblock %} |