Website/old/layouts/member.hbs

24 lines
800 B
Handlebars

<div class="person">
{{#if pic}}
<img class="photo" src="{{pic}}" width="{{pic_w}}" height="{{pic_h}}" />
{{/if}}
<h1>{{details.name}}</h1>
<div class=links>
{{#if github}}<a href="http://github.com/{{github}}">GitHub</a>{{/if}}
{{#if twitter}}<a href="http://twitter.com/{{twitter}}">Twitter</a>{{/if}}
{{#if scholar}}<a href="https://scholar.google.com/citations?user={{scholar}}">Google&nbsp;Scholar</a>{{/if}}
{{#if cv}}<a href="{{cv}}">CV</a>{{/if}}
</div>
{{{contents}}}
<h2>Publications</h2>
<div class="paper_list">
{{#each details.pubs}}
<li><div class="title">{{title}}</div>
<div class="authors">{{{list authors}}}</div>
<div class="metadata"><span class="venue">{{venue}}</span>
<span class="resources">{{{resourcesFormat}}}</span></div>
</li>
{{/each}}
</div>
</div>