diff --git a/app/site/_layouts/repo-report.liquid b/app/site/_layouts/repo-report.liquid
index 3fd984cd24..8470dfbffb 100644
--- a/app/site/_layouts/repo-report.liquid
+++ b/app/site/_layouts/repo-report.liquid
@@ -1,7 +1,22 @@
---
layout: base
---
+
+
{% assign project = projects | findObject: repo %}
@@ -155,6 +170,40 @@ layout: base
{{ project.pull_requests_count }}
+
+
+
+
+
+
+ Project Creation Date
+ Age of Project
+
+
+
+
+ {{ project.created_at | date: '%B %d, %Y' }}
+
+
+ {% comment %} takes project created + todays date and turns it into seconds {% endcomment %}
+ {% assign created_date = project.created_at | date: '%s' | plus: 0 %}
+ {% assign current_date = 'now' | date: '%s' | plus: 0 %}
+
+ {% assign age_seconds = current_date | minus: created_date %}
+
+ {% comment %} divide by how many seconds are in a day to convert back into days {% endcomment %}
+ {% assign age_days = age_seconds | divided_by: 86400.0 | round %}
+
+ {{ age_days }} day{% if age_days != 1 %}s{% endif %}
+
+
+
{% else %}
Error Occurred: Object Not Found