diff options
Diffstat (limited to 'templates/conference')
-rw-r--r-- | templates/conference/keynote.html | 6 | ||||
-rw-r--r-- | templates/conference/sponsors.html | 8 |
2 files changed, 7 insertions, 7 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 %} diff --git a/templates/conference/sponsors.html b/templates/conference/sponsors.html index 9a7289a..bb2238e 100644 --- a/templates/conference/sponsors.html +++ b/templates/conference/sponsors.html @@ -1,23 +1,23 @@ {% extends "base.html" %} - +{% load static %} {% block content %} <br> <h2>Sponsors</h2> <br> <table> -<tr><td><img src="/2012/static/images/enthought_logo.png" width=275> +<tr><td><img src="{% static 'images/enthought_logo.png' %}" width=275> <td><p align="justify"><a href="http://www.enthought.com/" target=_blank>Enthought Inc.</a> is a software company based in Austin, Texas, USA that develops scientific computing solutions using primarily the Python programming language. It is best known for the early development and maintenance of the <a href="http://scipy.org/" target=_blank>SciPy</a> library of mathematics, science, and engineering algorithms and for its Python for scientific computing distribution <a href="https://www.enthought.com/products/canopy/" target=_blank>Enthought Canopy</a> (formerly EPD). </table> <table> -<tr><td><img src="/2012/static/images/mhrd_logo.png" width=275> +<tr><td><img src="{% static 'images/mhrd_logo.png' %}" width=275> <td>The <a href="http://fossee.in/">FOSSEE project</a> undertaken by IIT Bombay is funded by <a href="http://mhrd.gov.in/">Ministry of Human Resource Development(Govt. of India)</a> under National Mission on Education through ICT </table> <hr> <h2>Orgranizers</h2> <table> -<tr><td><img src="/2012/static/images/fossee.jpg" height=100 width=275> +<tr><td><img src="{% static 'images/fossee.jpg' %}" height=100 width=275> <td>Annual SciPy India conference is organized by the team members of <a href="http://fossee.in/">FOSSEE</a> project. For any queries you may writes us at info[at]fossee[dot]in </table> |