diff options
author | hardythe1 | 2013-11-13 13:23:06 +0530 |
---|---|---|
committer | hardythe1 | 2013-11-13 13:23:06 +0530 |
commit | 300b752fb20bdf42f24422e7c2291f256e827dec (patch) | |
tree | 925fb6d12e18448ac60e61ba7fb253afa8603939 /templates/conference/keynote.html | |
parent | 9013d7c0c0a4509224ae7c3ae2bda054ee59aa13 (diff) | |
download | SciPy2012-300b752fb20bdf42f24422e7c2291f256e827dec.tar.gz SciPy2012-300b752fb20bdf42f24422e7c2291f256e827dec.tar.bz2 SciPy2012-300b752fb20bdf42f24422e7c2291f256e827dec.zip |
changes to make the static files work
Diffstat (limited to 'templates/conference/keynote.html')
-rw-r--r-- | templates/conference/keynote.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/conference/keynote.html b/templates/conference/keynote.html index dc6f377..f38e299 100644 --- a/templates/conference/keynote.html +++ b/templates/conference/keynote.html @@ -1,16 +1,16 @@ {% extends "base.html" %} - +{% load static %} {% block content %} <p><h2>Keynote by Dr. Ole Nielsen</h2></p> <div> <p>Ole Nielsen has been an Open Source adopter, promotor and developer since the early nineties during his career as technical consultant, academic researcher, government scientist and development professional within an aid organisation. Ole has a double Master's degree in Mathematics and Computer Science as well as a PhD in scientific computing from universities in Denmark. Ole joined AusAID in Jakarta in 2010 to support the Indonesian government in multi-hazard disaster risk reduction. </p> -<image src="/2012/static/images/ole.jpg"> +<image src="{% static 'images/ole.jpg' %}"> <iframe src="http://urtalk.kpoint.com/kapsule/gcc-7f6d80fa-7e37-4693-a9c3-08eaa23cfd22/v1/embedded?size=M" allowFullScreen webkitallowFullScreen mozallowFullScreen width="616" height="407" rel="nofollow"> </iframe> -<a href="/2012/static/slides/geoprocessing.zip">Download Slides</a> +<a href=" {% static 'slides/geoprocessing.zip' %}">Download Slides</a> {% endblock %} |