Initial version of site almost ready.

This commit is contained in:
Justin Hsu
2015-01-04 20:43:45 -08:00
parent f4ac1192f4
commit cc7021ac4e
17 changed files with 344 additions and 132 deletions
+27 -21
View File
@@ -1,21 +1,27 @@
<li>
<!-- $identifier$ -->
$title$ </br>
$author$ </br>
$if(eprint)$
[<a href="$eprint$">Arxiv</a>]
$endif$
$if(docs)$
[<a href="$doclink(identifier)$">Paper</a>]
$endif$
$if(slides)$
[<a href="$slidelink(identifier)$">Slides</a>]
$endif$
$if(poster)$
[<a href="$posterlink(identifier)$">Poster</a>]
$endif$
<br>
$if(notes)$
$notes$ <br>
$endif$
</li>
<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(eprint)$
[<a href="$url$">ArXiV</a>]
$endif$
$if(docs)$
[<a href="$doclink(identifier)$">Paper</a>]
$endif$
$if(slides)$
[<a href="$slidelink(identifier)$">Slides</a>]
$endif$
$if(poster)$
[<a href="$posterlink(identifier)$">Poster</a>]
$endif$
<br>
$if(notes)$
$notes$ <br>
$endif$
</td>
</tr>
+2 -3
View File
@@ -1,4 +1,3 @@
<h2> $bibtitle$ </h2>
<ul>
<table>
$bibitems$
</ul>
</table>
+24 -3
View File
@@ -1,18 +1,39 @@
<meta charset=utf-8>
<html>
<head>
<title> My Site </title>
<title> Justin Hsu </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:500,300,300italic'
rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet'
type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-33267683-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="container" id="flexed">
<div class="header">
<h1> Justin Hsu </h1>
</div>
$body$
</div>
</div>
<footer>
<small>
$footer$
</small>
</footer>
</body>
</html>