Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.09 KB

dashboard.md

File metadata and controls

47 lines (36 loc) · 1.09 KB
layout title
page
Dashboard || U.S. Open Data

Project Dashboard

We have projects underway to help to build the capacity of open data. Here is the status of all of our projects.

{% for project in site.data.dashboard %}

{{ project.title }}

{{ project.status }}

{{ project.description }}

<div>
    {% if project.contractor != null %}
    <p>Contractor: <a href="{{ project.contractor_url }}">{{ project.contractor }}</a></p>
    {% endif %}
    
    <ul>
    {% if project.repository != null %}
    <li><a href="{{ project.repository }}">Repository</a></li>
    {% endif %}
   
    {% if project.blog_entry != null %}
    <li><a href="{{ project.blog_entry }}">Blog Entry</a></li>
    {% endif %}
   
    {% if project.website != null %}
    <li><a href="{{ project.website }}">Website</a></li>
    {% endif %}
    </ul>
</div>
{% endfor %}