Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.1 KB

404.md

File metadata and controls

28 lines (22 loc) · 1.1 KB
layout permalink
default
/404.html

404

There is not a page at this URL.

If your URL contains /dataset instead of /datasets, /organization instead of /organizations, or /group instead of /categories, you may have followed a link from an older version of Open Data Philly. In this case, we will try to redirect you, but this will not work if you have disabled JavaScript.

Try searching for your dataset on the datasets page.

<script> if (window.location.pathname.startsWith("/dataset/")) { window.location.href = "/datasets" + window.location.pathname.slice(8); } else if (window.location.pathname.startsWith("/organization/")) { window.location.href = "/organizations" + window.location.pathname.slice(13); } else if (window.location.pathname.startsWith("/group/")) { if (window.location.pathname.endsWith("-group")) { window.location.href = "/categories" + window.location.pathname.slice(6, -6) } else { window.location.href = "/categories" + window.location.pathname.slice(6); } } </script>