justin-site/templates/bibitemtpl.html
Justin Hsu e029a113f3 Template fix when journal missing information.
Strange fact: hakyll templates don't report missing fields sometimes,
under conditionals?
2016-10-13 22:43:58 -04:00

32 lines
624 B
HTML

<tr>
<!-- $identifier$ -->
<td id="bibcell"> <b> $year$ </b> </td>
<td id="bibcell">
<div id="titlecell"> <b> $title$ </b> </div>
$author$. </br>
$if(booktitle)$
In $booktitle$.</br>
$endif$
$if(journal)$
$journal$,
$if(pages)$
$volume$($number$):$pages$,
$endif$
$month$ $year$.</br>
$endif$
$if(url)$
[<a href="$url$">Paper</a>]
$endif$
$if(slides)$
[<a href="$slides$">Slides</a>]
$endif$
$if(poster)$
[<a href="$poster$">Poster</a>]
$endif$
<br>
$if(note)$
$note$ <br>
$endif$
</td>
</tr>