-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
55 lines (48 loc) · 1.19 KB
/
project.html
File metadata and controls
55 lines (48 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
<style>
/* This page uses the minimal Jekyll theme, whose default desktop layout
reserves a narrow sidebar for the site title/bio. For the project page,
I suppress that sidebar and let the research writeup, tables, and figures
use the full content width. */
.wrapper {
width: min(1180px, calc(100% - 44px));
max-width: 1180px;
margin: 0 auto;
}
.wrapper > header,
.wrapper > footer {
display: none;
}
.wrapper > section {
width: 100%;
max-width: none;
float: none;
padding-bottom: 40px;
}
@media print, screen and (max-width: 960px) {
.wrapper {
width: auto;
max-width: none;
margin: 0;
}
.wrapper > section {
width: auto;
float: none;
position: static;
}
}
</style>
<nav class="site-nav" aria-label="Primary">
<a href="/">Home</a>
<a href="/assets/pdfs/resume.pdf">Resume</a>
<a href="/project.html" aria-current="page">Project + Code</a>
<a href="/research.html">Publications</a>
</nav>
<div class="project-page">
{% capture project_content %}
{% include_relative project_page_revised.md %}
{% endcapture %}
{{ project_content | markdownify }}
</div>