17 lines
334 B
HTML
17 lines
334 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "header.html" . }}
|
|
|
|
<body>
|
|
<div class="container wrapper">
|
|
{{ partial "head.html" . }}
|
|
<div class="body_spacer"></div>
|
|
{{ partial "introduction.html" . }}
|
|
{{ partial "projects.html" . }}
|
|
{{ partial "publications.html" . }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
|
|
</html>
|