Skip to content

Commit 04f878e

Browse files
committed
Adding projects page
1 parent 66ba38f commit 04f878e

File tree

3 files changed

+58
-7
lines changed

3 files changed

+58
-7
lines changed

_data/projects.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
- _id: SPHGR
22
description: SPHGR is designed to present an intuitive, straightforward and
33
easy to use interface to galaxy and halo catalogs from simulation outputs.
4-
logo: /static/img/logos/sphgr.png
4+
logo: /assets/img/logos/sphgr.png
55
repo: https://bitbucket.org/rthompson/sphgr
66
team:
77
- begin_year: 2014
@@ -11,7 +11,7 @@
1111
- _id: OpenGL Volume Rendering for yt
1212
description: Adding support for interactively volume rendering adaptive mesh
1313
refinement data in yt
14-
logo: /static/img/logos/openglvr.png
14+
logo: /assets/img/logos/openglvr.png
1515
repo: https://bitbucket.org/yt_analysis/yt
1616
team:
1717
- begin_year: 2014
@@ -26,7 +26,7 @@
2626
- _id: Bitmap Indices
2727
description: Fast, memory-efficient indexing for datasets composed of discrete
2828
points (particles) in yt
29-
logo: /static/img/logos/bitmap.png
29+
logo: /assets/img/logos/bitmap.png
3030
repo: https://bitbucket.org/langmm/yt-bitmap
3131
team:
3232
- begin_year: 2015
@@ -38,7 +38,7 @@
3838
- _id: Virtual Reality
3939
description: Loading scientific data into Unity3D with the aim of presenting
4040
an immersive, virtual reality interface through the HTC Vive and Oculus Rift.
41-
logo: /static/img/logos/unity3d_vr.png
41+
logo: /assets/img/logos/unity3d_vr.png
4242
repo: https://bitbucket.org/data-exp-lab/unity3d_vr
4343
team:
4444
- begin_year: 2016
@@ -57,7 +57,7 @@
5757
website: http://adsabs.harvard.edu/abs/2015ApJ...811..152L
5858
- _id: pyMinecraft
5959
description: Interface for loading data from yt into Minecraft
60-
logo: /static/img/logos/pyminecraft.png
60+
logo: /assets/img/logos/pyminecraft.png
6161
repo: https://bitbucket.org/data-exp-lab/pyMinecraft
6262
team:
6363
- begin_year: 2015
@@ -74,7 +74,7 @@
7474
multi-resolution data. The project supports astrophysical simulations, understanding
7575
of non-spatial data, voluming rendering of visulations for high-quality scientific
7676
outreach videos, and developing systems for unstructured mesh datasets.
77-
logo: /static/img/logos/yt_logo_cutout_400x400.png
77+
logo: /assets/img/logos/yt_logo_cutout_400x400.png
7878
other:
7979
- Data access and manipulation
8080
- Visualization though Slices, projections, oblique slices.
@@ -113,7 +113,7 @@
113113
- _id: yt hub
114114
description: Customized JupyterHub deployment including Girder, Tangelo and
115115
ownCloud integration for storage, analysis and visualization of shared datasets.
116-
logo: /static/img/logos/ythub.png
116+
logo: /assets/img/logos/ythub.png
117117
other:
118118
- Remote data exploration
119119
- Data sharing and interactivity

_layouts/projects.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
layout: base
3+
---
4+
5+
<header>
6+
<div class="header">
7+
<div class="container">
8+
<div class="row">
9+
<h1>Projects We Work On</h1>
10+
</div>
11+
</div>
12+
</div>
13+
</header>
14+
{{ content }}
15+
16+
<div class="container">
17+
{% for proj in site.data.projects %}
18+
<div class="row" style="margin-top: 4em;">
19+
<div class="col-sm-6 col-sm-offset-4">
20+
<h1><a href="{{proj['website']}}">{{proj['_id']}}</a></h1>
21+
</div>
22+
</div>
23+
<div class="row">
24+
<div class="col-sm-2 col-sm-offset-2">
25+
{%if proj['logo'] %}<a href="{{proj['website']}}" class="image-link">
26+
<img src="{{proj['logo'] | relative_url}}" style="width:160px;"/>
27+
</a>{%endif%}
28+
</div>
29+
<div class="col-sm-6">
30+
{{proj['description']}}
31+
{%if proj['other']%}<ul>{%for o in proj['other']%}
32+
<li>{{o}}</li>
33+
{%endfor%}</ul>{%endif%}
34+
{%if proj['team']%}<h3>Team</h3><ul>{%for pos in proj['team']%}
35+
<li><b>{{pos['name']}}:</b> {{pos['position']}}, <i>
36+
{{pos['begin_month']}} {{pos['begin_year']}} -
37+
{{pos['end_month']}} {{pos['end_year'] | default: 'present')}}</i>
38+
</li>
39+
{%endfor%}</ul>{%endif%}
40+
{%if proj['website']%}
41+
<br/><a href="{{proj['website']}}">[{{proj['website']}}]</a>
42+
{%endif%}
43+
{%if proj['repo']%}<br/><a href="{{proj['repo']}}">[Source Code]</a>{%endif%}
44+
</div>
45+
</div>
46+
<hr/>
47+
{% endfor %}
48+
</div> <!-- container -->

projects.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
layout: projects
3+
---

0 commit comments

Comments
 (0)