-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from paulopperman/active-projects
add active projects page
- Loading branch information
Showing
6 changed files
with
60 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
<div class="container"> | ||
<h1>{{ page.name }}</h1> | ||
<p>{{ page.description }}</p> | ||
{{ content }} | ||
</div> | ||
</body> | ||
|
||
</html> |
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,9 @@ | ||
--- | ||
layout: project | ||
title: Data Repository Project | ||
name: Data Repository | ||
description: We're building an open data repository to make datasets easy to access and use. | ||
github_repo: /data | ||
--- | ||
|
||
Access the github repository <a href="{{ page.github_repo | prepend: site.github_username | prepend: "https://github.com/" }}">here.</a> |
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,7 @@ | ||
--- | ||
layout: project | ||
title: Mapping Project | ||
name: Mapping Project | ||
description: Improving the Open Street Maps database for Aquidneck Island | ||
--- | ||
|
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,22 @@ | ||
--- | ||
layout: default | ||
title: Active Projects | ||
--- | ||
<h1>Active Projects</h1> | ||
|
||
<table> | ||
<tr> | ||
<th style="width:30%">Project Name</th> | ||
<th style="width:70%">Description</th> | ||
</tr> | ||
|
||
{% for project in site.projects %} | ||
|
||
<tr> | ||
<td><a href="{{ project.url | prepend: site.baseurl }}">{{project.title}}</a></td> | ||
<td>{{ project.description }}</td> | ||
</tr> | ||
|
||
{% endfor %} | ||
|
||
</table> |