Skip to content

Commit

Permalink
E-mail field added to template for last slide
Browse files Browse the repository at this point in the history
  • Loading branch information
shoorick authored and jdan committed Oct 22, 2013
1 parent 305e780 commit fd4592c
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions templates/author.mustache
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
<div class="author">
<h1 class="name">{{name}}</h1>
<h3 class="twitter">
<a href="http://twitter.com/{{{twitter}}}" tabindex="-1">{{{twitter}}}</a>
</h3>
<h3 class="url">
<a href="{{{url}}}" tabindex="-1">{{{url}}}</a>
</h3>
{{#twitter}}
<h3 class="twitter">
<a href="http://twitter.com/{{{twitter}}}" tabindex="-1">{{{twitter}}}</a>
</h3>
{{/twitter}}
{{#url}}
<h3 class="url">
<a href="{{{url}}}" tabindex="-1">{{{url}}}</a>
</h3>
{{/url}}
{{#email}}
<h3 class="email">
<a href="mailto:{{{email}}}" tabindex="-1">{{{email}}}</a>
</h3>
{{/email}}
</div>

0 comments on commit fd4592c

Please sign in to comment.