-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
85 additions
and
2 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
83 changes: 83 additions & 0 deletions
83
src/pages/products/sgid/transportation/uta-commuter-rail-stations.astro
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,83 @@ | ||
--- | ||
import Layout from '@layouts/DataPage.astro'; | ||
import type { IMetadata, IPageMetadata } from '@models/products/sgid/types'; | ||
import { ProductType, SgidCategory } from '@models/products/sgid/types'; | ||
import HubDownloads from '@components/data/HubDownloads.astro'; | ||
import Metadata from '@components/data/Metadata.astro'; | ||
import UpdateHistory from '@components/data/UpdateHistory.astro'; | ||
import CardWithPopularLink from '@components/page/CardWithPopularLink.astro'; | ||
import CardWithSmallLink from '@components/page/CardWithSmallLink.astro'; | ||
import GridForMoreResources from '@components/page/GridForMoreResources.astro'; | ||
import GridForYouMightLike from '@components/page/GridForYouMightLike.astro'; | ||
import Section from '@components/page/Section.astro'; | ||
import { dataPages } from '@data/downloadMetadata'; | ||
export const metadata: IMetadata = { | ||
title: 'Utah UTA Commuter Rail Stations', // The ArcGIS Online title Goes Here (Utah blah blah) | ||
description: `Point locations of Utah Transit Authority (UTA) commuter rail (FrontRunner) stations.`, | ||
stewards: ['Utah Transit Authority (UTA)', 'UGRC'], | ||
type: ProductType.POINT, | ||
category: SgidCategory.TRANSPORTATION, | ||
}; | ||
const page: IPageMetadata = { | ||
...metadata, | ||
updateHistory: [`May 2019`, `December 2018`, `May 2013`], | ||
hub: { | ||
...dataPages[metadata.title], | ||
}, | ||
}; | ||
--- | ||
|
||
<Layout title={page.title} subTitle={page.updateHistory[0]} category={page.category} actionUrl={page.application}> | ||
<Metadata slot="metadata" {...page} /> | ||
|
||
<Fragment slot="summary"> | ||
<p> | ||
Point locations of Utah Transit Authority's (UTA) FrontRunner North and South commuter rail stations from North | ||
Ogden to Provo. Locations were digitized from high resolution imagery and will be updated as needed. | ||
</p> | ||
</Fragment> | ||
|
||
<Section title="Use the data" slot="downloads" titlePosition="center"> | ||
<HubDownloads {...page.hub} /> | ||
</Section> | ||
|
||
<UpdateHistory slot="update-history" updates={page.updateHistory} style="secondary" /> | ||
|
||
<Section title="More resources" slot="more-resources" titlePosition="center"> | ||
<GridForMoreResources> | ||
<CardWithPopularLink title="UTA" href="https://www.rideuta.com/Services/FrontRunner" | ||
>Utah Transit Authority FrontRunner information including schedule and ticketing.</CardWithPopularLink | ||
> | ||
<CardWithPopularLink title="UDOT" href="https://www.udot.utah.gov/connect/public/public-transit/" | ||
>Utah Department of Transportation public transit information.</CardWithPopularLink | ||
> | ||
</GridForMoreResources> | ||
</Section> | ||
|
||
<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center"> | ||
<GridForYouMightLike> | ||
<CardWithSmallLink | ||
title="Frontrunner Routes" | ||
href="/products/sgid/transportation/uta-commuter-rail-routes" | ||
style="secondary">UTA commuter rail routes.</CardWithSmallLink | ||
> | ||
<CardWithSmallLink title="UTA Routes" href="/products/sgid/transportation/uta-routes" style="secondary" | ||
>All bus, TRAX, and Frontrunner routes.</CardWithSmallLink | ||
> | ||
<CardWithSmallLink title="UTA Stops" href="/products/sgid/transportation/uta-stops" style="secondary" | ||
>All bus, TRAX, and Frontrunner stops.</CardWithSmallLink | ||
> | ||
<CardWithSmallLink | ||
title="TRAX Routes" | ||
href="/products/sgid/transportation/uta-light-rail-routes" | ||
style="secondary">UTA light rail routes.</CardWithSmallLink | ||
> | ||
</GridForYouMightLike> | ||
</Section> | ||
</Layout> |