| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | 
							- {{ partial "header.html" . }}
 
- {{ partial "navbar.html" . }}
 
- <div class="container">
 
-     {{ range $index, $page := where .Site.Pages "Section" "=" "home" }}
 
-     {{ if eq .Title "about" }}
 
-     <section id="bio">
 
-         {{ .Render "bio" }}
 
-     </section>
 
-     {{ end }}
 
-     {{ end }}
 
-     <section id="publications">
 
-         <h2>Recent Publications</h2>
 
-         <ul class="fa-ul">
 
-             {{ range first 5 (where .Data.Pages.ByDate "Section" "publications").Reverse }}
 
-             <li>
 
-                 <i class="fa-li fa fa-file-text-o pub-icon" aria-hidden="true"></i>
 
-                 <span style="padding-right: 8px">{{ .Title | markdownify }}</span>
 
-                 <a class="btn btn-primary btn-outline btn-xs" href="{{ .Permalink }}">Details</a>
 
-                 {{ with .Params.url_pdf }}<a class="btn btn-primary btn-outline btn-xs" href="{{ . }}">PDF</a>{{ end }}
 
-                 {{ with .Params.url_code }}<a class="btn btn-primary btn-outline btn-xs" href="{{ . }}">Code</a>{{ end }}
 
-                 {{ with .Params.url_dataset }}<a class="btn btn-primary btn-outline btn-xs" href="{{ . }}">Dataset</a>{{ end }}
 
-                 {{ with .Params.url_project }}<a class="btn btn-primary btn-outline btn-xs" href="{{ . }}">Project</a>{{ end }}
 
-                 {{ range .Params.url_custom }}<a class="btn btn-primary btn-outline btn-xs" href="{{ .url }}">{{ .name }}</a>{{ end }}
 
-             </li>
 
-             {{ end }}
 
-         </ul>
 
-         <p class="text-right"><a href="/publications/">More Publications <i class="fa fa-angle-double-right" style="padding-left: 5px;"></i></a></p>
 
-     </section>
 
-     <section id="news">
 
-         <h2>News</h2>
 
-         {{ range last 5 (where .Data.Pages "Section" "=" "blog") }}
 
-         <div class="article-list-item">
 
-             <h3 class="post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
 
-             {{ partial "article_metadata" . }}
 
-             <p>
 
-                 {{ if .Truncated }}
 
-                     {{ .Summary }}
 
-                     <a href="{{ .RelPermalink }}">Read More <i class="fa fa-angle-double-right" style="padding-left: 5px;"></i></a>
 
-                 {{ else }}
 
-                     {{ .Content }}
 
-                 {{ end }}
 
-             </p>
 
-         </div>
 
-         {{ end }}
 
-         <p class="text-right"><a href="/blog/">More Posts <i class="fa fa-angle-double-right" style="padding-left: 5px;"></i></a></p>
 
-     </section>
 
-     <section id="projects">
 
-         <h2>Projects</h2>
 
-         <ul class="fa-ul">
 
-         {{ range where .Data.Pages "Section" "=" "projects" }}
 
-             <li>
 
-                 {{ if .Content }}<a href="{{ .Permalink }}">{{ else }}{{ with .Params.external_link }}<a href="{{ . }}">{{ end }}{{ end }}
 
-                 <i class="fa-li fa fa-files-o pub-icon" aria-hidden="true"></i>
 
-                 <span style="padding-right: 8px">{{ .Title | markdownify }}</span>
 
-                 {{ if .Content }}</a >{{ else }}{{ with .Params.external_link }}</a>{{ end }}{{ end }}
 
-             </li>
 
-         {{ end }}
 
-         </ul>
 
-     </section>
 
-     {{ range $index, $page := where .Site.Pages "Section" "=" "home" }}
 
-     {{ if eq .Title "teaching" }}
 
-     <section id="teaching">
 
-         {{ .Render "teaching" }}
 
-     </section>
 
-     {{ end }}
 
-     {{ end }}
 
-     <section id="contact">
 
-         <h2>Contact</h2>
 
-         {{ partial "contact.html" . }}
 
-     </section>
 
-     {{ partial "footer_container.html" . }}
 
- </div>
 
- {{ partial "footer.html" . }}
 
 
  |