Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 66f5b77

Browse files
committed
Updates to static site in support of updated USWDS depedency
1 parent 401d7a4 commit 66f5b77

File tree

8 files changed

+2839
-315
lines changed

8 files changed

+2839
-315
lines changed

.snyk

Lines changed: 2823 additions & 304 deletions
Large diffs are not rendered by default.

assets/data/filters/repos.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
{ "name": "Department of Transportation", "value": "DOT" },
1616
{ "name": "Department of Veterans Affairs", "value": "VA" },
1717
{ "name": "Environmental Protection Agency", "value": "EPA" },
18+
{ "name": "Federal Election Commission", "value": "FEC" },
1819
{ "name": "General Services Administration", "value": "GSA" },
1920
{ "name": "National Aeronautics and Space Administration", "value": "NASA" },
2021
{ "name": "National Science Foundation", "value": "NSF" },

config/site/agency_list.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@
706706
"overall": "red"
707707
},
708708
"complianceDashboard": false,
709-
"agencyDashboard": false,
709+
"agencyDashboard": true,
710710
"orgs": ["fecgov"]
711711
}
712712
]

src/components/about/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ class About extends Component {
3838
return (
3939
<main id="main-content">
4040
<SiteBanner title="ABOUT" />
41-
<Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'About' }]} />
42-
<div className="grid-container">
41+
{/* <Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Agencies' }]} /> */}
42+
<div className="grid-container grid-row tablet-lg:margin-top-4 margin-top-2">
4343
<div className="tablet-lg:display-none display-block padding-bottom-4">
4444
<NavSelect pages={pagesForSelect} />
4545
</div>

src/components/agencies/agencies.component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ class Agencies extends React.Component {
8181
return (
8282
<main className="search-results-content" id="main-content">
8383
<SiteBanner title="Agencies" />
84-
<Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Agencies' }]} />
85-
<div className="grid-container">
84+
{/* <Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Agencies' }]} /> */}
85+
<div className="grid-container grid-row tablet-lg:margin-top-4 margin-top-2">
8686
<div className="grid-row grid-gap" />
8787
</div>
8888
<div className="grid-container">

src/components/agency-compliance/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ class AgencyCompliance extends Component {
4343
render() {
4444
return (
4545
<main id="main-content">
46-
<SiteBanner title="FEDERAL AGENCIES" />
47-
<Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Federal Agencies' }]} />
48-
<div className="grid-container">
46+
<SiteBanner title="GUIDANCE" />
47+
{/* <Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Guidance' }]} /> */}
48+
<div className="grid-container grid-row tablet-lg:margin-top-4 margin-top-2">
4949
<div className="tablet-lg:display-none display-block padding-bottom-4">
5050
<NavSelect pages={pagesForSelect} />
5151
</div>

src/components/home-news/home-news.component.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ export default class HomeNews extends Component {
2020
{news.title}
2121
</a>
2222
</h3>
23-
<p className="margin-bottom-0 font-body-2xs margin-top-105">{news.description}</p>
23+
<p className="margin-bottom-0 font-body-2xs margin-top-105">
24+
{news.description}
25+
</p>
26+
{/*
2427
<time className="font-body-3xs">{news.date}</time>
28+
*/}
2529
</div>
2630
<picture className="order-first padding-right-2">
2731
<source srcSet={news.image} media="min-width: 800px" />

src/components/privacy-policy/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ class PrivacyPolicy extends Component {
5353
return (
5454
<main id="main-content">
5555
<SiteBanner title="PRIVACY POLICY" />
56-
<Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Privacy Policy' }]} />
57-
<div className="grid-container">
56+
{/* <Breadcrumbs crumbs={[{ text: 'Home', to: '/' }, { text: 'Agencies' }]} /> */}
57+
<div className="grid-container grid-row tablet-lg:margin-top-4 margin-top-2">
5858
<div className="tablet-lg:display-none display-block padding-bottom-4">
5959
<NavSelect
6060
pages={sections.map(section => ({

0 commit comments

Comments
 (0)