diff options
-rw-r--r-- | project/static/css/styles.css | 20 | ||||
-rw-r--r-- | project/templates/talk/speakers.html | 91 |
2 files changed, 85 insertions, 26 deletions
diff --git a/project/static/css/styles.css b/project/static/css/styles.css index 8304155..e894c85 100644 --- a/project/static/css/styles.css +++ b/project/static/css/styles.css @@ -306,6 +306,8 @@ div.picture img #right-inner li { font-weight: bold; + font-family: Verdana, Arial, "Bitstream Vera Sans", Helvetica, sans-serif; + font-size: 1.3em; padding-bottom: 15px; } /* forms */ @@ -443,4 +445,22 @@ ol li { font-family: Verdana, Arial, "Bitstream Vera Sans", Helvetica, sans-serif; font-size: 1.1em; color: #58585a; +} + +#speaker { + display:inline; +} + +#speakerphoto { + float: left; + padding-right: 20px; +} + +#speakerinfo { + width: 80%; + font-family: Verdana, Arial, "Bitstream Vera Sans", Helvetica, sans-serif; + font-size: 1.2em; + color: #58585a; + margin-left: 5em; + text-align: justify; }
\ No newline at end of file diff --git a/project/templates/talk/speakers.html b/project/templates/talk/speakers.html index c8267e7..3c0b6ac 100644 --- a/project/templates/talk/speakers.html +++ b/project/templates/talk/speakers.html @@ -5,36 +5,75 @@ <h2><a name="date">Speakers</a></h2> </div> <div class="entry"> - <h3>The following speakers will be invited.</h3> - <p>Travis Oliphant (Keynote) - He is the architect of NumPy and author of - the definitive guide to NumPy. He was formerly a member of faculty at - BYU and is currently the Vice-President of Enthought Inc. (USA).</p> + <h3>The following speakers are invited.</h3> + <div id="speaker"><div id="speakerphoto"><img alt="Travis Oliphant" + src="/img/hs_travis.jpg" height=155 width=200 /></div> + <div id="speakerinfo"><h3>Travis Oliphant (Keynote)</h3> + He is the architect of NumPy and author of the definitive guide to + NumPy. He was formerly a member of faculty at BYU and is currently + the Vice-President of Enthought Inc. (USA).</div> + <br /></div> + <div style="clear: both;"/> + <div id="speaker"> + <div id="speakerphoto"><img alt="Jarrod Millman" + src="/img/jarrod.png" /></div> + <div id="speakerinfo"><h3>Jarrod Millman</h3> + He is on the SciPy steering committee and an active + contributor to both the NumPy and SciPy projects. He is the acting + managing director and the director of computing for UC Berkeley's + Neuroscience Institute, where he helped found the Neuroimaging in + Python (NIPY) project. + </div></div> + <div style="clear: both;"/> + <br /><br /> - <p>Fernando Perez - He is the architect of IPython (Interactive Python) - and developer of NiPy (Neuro-Imaging for Python). He is currently with - the Neuroscience Institute, UC Berkeley (USA).</p> + <div id="speaker"> + <div id="speakerphoto"><img alt="David Cournapeau" + src="" /></div> + <div id="speakerinfo"><h3>David Cournapeau</h3> + He is one of the lead NumPy and SciPy developers + and is just received his PhD in Signal Processing at Kyoto University, + Japan. + </div></div> + <div style="clear: both;"/> + <br /><br /> - <p>Jarrod Millman - He is a developer for NiPy and is the director of - computing for UC Berkeley's Neuroscience Institute, where he leads the - Computational Infrastructure for Research Laboratories (CIRL) group.</p> + <div id="speaker"> + <div id="speakerphoto"><img alt="Christopher Burns" + src="/img/ChristopherBurns.jpg" height=190 width=200 /></div> + <div id="speakerinfo"><h3>Christopher Burns</h3> + He is one of the lead developers on the + Neuroimaging in Python project (NiPy). He is a software engineer in + the Computational Infrastructure for Research Laboratories group at UC + Berkeley's Neuroscience Institute and a regular contributor to the + NumPy/SciPy projects. + </div></div> + <div style="clear: both;"/> + <br /><br /> - <p>Stéfan van der Walt - He is a developer for Scipy and Numpy. He is - currently a Professor of Applied Mathematics at the University of - Stellenbosch (South Africa)</p> + <div id="speaker"> + <div id="speakerphoto"><img alt="Prabhu Ramachandran" + src="/img/prabhu_ramachandran.jpg" /></div> + <div id="speakerinfo"><h3>Prabhu Ramachandran</h3> + He is the architect of Mayavi (3D visualization in Python) and is + currently a faculty member at the Department of Aerospace Engineering, + Indian Institute of Technology Bombay, India. + </div></div> + <div style="clear: both;"/> + <br /><br /> - <p>David Cournapeau - He is a SciPy developer and is currently a PhD - student in Signal Processing at Kyoto University, Japan.</p> - - <p>Gaël Varoquaux - He is a developer of Mayavi and is currently with the - Department of Applied Mathematics and Neuroscience, Neurospin, CEA - - INRIA Saclay (France)</p> - - <p>Prabhu Ramachandran - He is the architect of Mayavi (3D visualization - in Python) and is currently a faculty member at the Department of - Aerospace Engineering, Indian Institute of Technology Bombay, India.</p> - - <p>Asokan Pichai - He is a trainer and mentor for various companies and is - currently a consultant for the FOSSEE project.</p> + <div id="speaker"> + <div id="speakerphoto"><img alt="Asokan Pichai" + src="/img/pasokan.jpg" height=119 width=200 /></div> + <div id="speakerinfo"><h3>Asokan Pichai</h3> + Mr. Asokan Pichai is the consultant/Project manager for the Python + group of the FOSSEE project. He is also the principal consultant at + Merquri consulting. He has immense experience in the field of training + and instructional design. He has been a director at CIBS and has been + the CEO/CTO of various firms such as MinVesta Infotech Ltd., Arkin + Systems and Future Focus Infotech. + </div></div> + <div style="clear: both;"/> </div> </div> {% endblock content %}
\ No newline at end of file |