Website/templates/person.erb
2017-08-17 15:03:30 -04:00

39 lines
1.2 KiB
Plaintext
Executable file

<%
name = if defined? name then name else "A Mysterious Stranger" end
%>
<div class="person">
<% if defined? pic %>
<% if pic.is_a? Hash %>
<img class="photo" src="<%=pic["file"]%>" width="<%=pic["width"]%>" height="<%=pic["height"]%>" />
<% elsif pic.is_a? String %>
<img class="photo" src="<%=pic%>" />
<% end %>
<% end %>
<h1><%= name %></h1>
<% if defined? status %>
<h5><%=
case status
when "PhD", "MS", "BS" then status + " student"
else status
end
%></h5>
<% end %>
<div class="links">
<% if defined? github %><a href="http://github.com/<%=github%>">GitHub</a><% end %>
<% if defined? twitter %><a href="http://twitter.com/<%=twitter%>">Twitter</a><% end %>
<% if defined? scholar %><a href="http://scholar.google.com/citations?user=/<%=scholar%>">Google&nbsp;Scholar</a><% end %>
<% if defined? dblp %><a href="http://dblp.uni-trier.de/pers/<%=dblp%>">DBLP</a><% end %>
<% if defined? cv %><a href="<%=cv%>">CV</a><% end %>
</div>
<%= body %>
<% pubs = LabMetadata::publications_for(name) %>
<% unless pubs.empty? %>
<h2>Publications</h2>
<%= LabMetadata::render_pubs(pubs) %>
<% end %>
</div>