Skip to content

Instantly share code, notes, and snippets.

@siddhartha-gadgil
Created January 22, 2018 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siddhartha-gadgil/10df36e52a84528dbf14e858a9a32036 to your computer and use it in GitHub Desktop.
Save siddhartha-gadgil/10df36e52a84528dbf14e858a9a32036 to your computer and use it in GitHub Desktop.
---
title: Faculty Members
---
<div class="col-md-12">
<h2>Faculty members</h2>
<h4>Alphabetically by last name</h4>
<p><b>To send email: <font face="Courier New" size="3">UserID[at]iisc.ac.in</font></b></p>
<table class="table table-striped">
{% for fac in site.data.faculty %}
<tr>
<td class="col-md-7"><div><h4>
<a href=
"{% if fac.website %}{{ fac.website }}{% else %}http://math.iisc.ac.in/~{{fac.user-id}}/{% endif %}">
{{ fac.name }}</a> (Ph.D., {{ fac.phd }})<h4> </div>
<div class="">
{{fac.chair}}
</div>
<div class="">
<strong>Research areas :</strong> {{ fac.research-areas}}
</div>
<div class="">
<div>
<strong>Phone :</strong> +91-80 2293 {{ fac.phone-ext}}
</div>
<div>
<strong>Office :</strong> Room {{ fac.office}}
</div>
<div>
<strong>UserID :</strong> {{fac.user-id}}
</div>
</div>
</td>
<td><img class="col-md-3 pull-right img-responsive" src="{{site.baseurl}}/images/fac-{{fac.user-id}}.jpg"></td>
</tr>
{% endfor %}
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment