-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
532 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
- release: False | ||
- release: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
- name: Home | ||
link: / | ||
- name: Projects | ||
link: /projects/ | ||
- name: Blog | ||
link: /blog/ | ||
- name: Research | ||
link: /research/ | ||
- name: News | ||
link: /news/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<button type="button" class="paper-link-button" data-toggle="modal" data-target="#citation"> | ||
Cite | ||
</button> | ||
|
||
<!-- Modal --> | ||
<div class="modal fade" id="citation" tabindex="-1" role="dialog" > | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title">Citation</h5> | ||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
{{ page.citation }} | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-primary">Copy</button> | ||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{% if site.data.release == False %} | ||
{% if site.data.release == false %} | ||
{% include construction.html %} | ||
{% endif %} | ||
<header> | ||
<nav id="nav-main"> | ||
<ul> | ||
{% for item in site.data.navigation %} | ||
<li {% if page.url == item.link %}class="current"{% endif %}><a href="{{ item.link }}">{{ item.name }}</a></li> | ||
{% endfor %} | ||
<li>Cooper Simpson</li> | ||
{% for item in site.data.navigation %} | ||
<li {% if page.url == item.link %}class="current"{% endif %}><a href="{{ item.link }}">{{ item.name }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</nav> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<div class="paper-list"> | ||
<ul> | ||
{% for paper in site.papers reversed %} | ||
<li> | ||
<div class="paper-details"> | ||
<h3> | ||
<a href="{{ paper.url }}">{{ paper.title }}</a> | ||
</h3> | ||
<ul> | ||
<li> | ||
{{ paper.authors }} | ||
</li> | ||
<li> | ||
({{ paper.year }}). | ||
</li> | ||
<li> | ||
{{ paper.type }} | ||
</li> | ||
</ul> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<div class="software-grid" > | ||
{% for item in site.software reversed %} | ||
<div class="project-tile" onclick="redirect('{{ item.code }}')"> | ||
<div class="tile-inner"> | ||
<div class="tile-front" style="--image-path: url({{ item.image }})"> | ||
<h3>{{ item.title }}</h3> | ||
</div> | ||
<div class="tile-back"> | ||
<p>{{ item.summary }}</p> | ||
<a>GitHub</a> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{% include head.html %} | ||
<body> | ||
{% include header.html %} | ||
<section id="home-intro" class="intro"> | ||
<div class="paper-title"> | ||
<h2>{{ page.title }}</h2> | ||
<ul> | ||
<li> | ||
{{ page.authors }} | ||
</li> | ||
<li> | ||
({{ page.year }}). | ||
</li> | ||
<li> | ||
{{ page.type }} | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<div class="paper-content"> | ||
|
||
<div class="paper-links"> | ||
<ul> | ||
<li> | ||
<a href="{{ page.pdf }}"> | ||
<button class="paper-link-button">PDF</button> | ||
</a> | ||
</li> | ||
{% if page.arxiv %} | ||
<li> | ||
<a href="{{ page.arxiv }}"> | ||
<button class="paper-link-button">arXiv</button> | ||
</a> | ||
</li> | ||
{% endif %} | ||
{% if page.code %} | ||
<li> | ||
<a href="{{ page.code }}"> | ||
<button class="paper-link-button">Code</button> | ||
</a> | ||
</li> | ||
{% endif %} | ||
<li> | ||
{% include citation.html %} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
{{ content }} | ||
|
||
</div> | ||
|
||
{% include footer.html %} | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.