Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gsa/production release 2024 07 30 #646

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"pa11y-ci:desktop": "pa11y-ci --config ./.pa11yci-desktop --sitemap http://localhost:8080/sitemap-0.xml --sitemap-find \"^https://smartpay.gsa.gov/\" --sitemap-replace \"http://localhost:8080/\"",
"pa11y-ci:mobile": "pa11y-ci --config ./.pa11yci-mobile --sitemap http://localhost:8080/sitemap-0.xml --sitemap-find \"^https://smartpay.gsa.gov/\" --sitemap-replace \"http://localhost:8080/\"",
"pa11y-ci:gh": "npx start-server-and-test serve http://localhost:8080 pa11y-ci",
"link-checker:pipeline": "npx start-server-and-test serve http://localhost:8080 'npx linkinator http://localhost:8080 --config linkinator-config.json'",
"link-checker:pipeline": "npx start-server-and-test serve http://localhost:8080 'npx linkinator http://localhost:8080/ --config linkinator-config.json'",
"lint": "eslint src --ext js,astro",
"link-checker": "npx linkinator http://localhost:4321/ --config linkinator-config.json"
},
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
288 changes: 288 additions & 0 deletions src/content/forum-presentations-2023/forum-presentations-2023.md

Large diffs are not rendered by default.

152 changes: 44 additions & 108 deletions src/content/resources/forum-presentations.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/pages/policies-and-audits/smart-bulletins/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ export async function getStaticPaths() {

<PageLayout title="Smart Bulletins">
<FullSizeTemplate
title={`Smart Bulletins`}
parent_nav_path={`policies-and-audits/`}
parent_nav_text = {`Return to the Polices & Audits`}
intro={`Smart Bulletins keep agencies informed of new or updated policies/regulations, program management practices, and other developments.`}
title = "Smart Bulletins"
parent_nav_path = "policies-and-audits/"
parent_nav_text = "Return to the Polices & Audits"
intro = "Smart Bulletins keep agencies informed of new or updated policies/regulations, program management practices, and other developments."
>
<!-- smart buletins table -->
<table class="usa-table usa-table--borderless">
Expand Down
25 changes: 25 additions & 0 deletions src/pages/resources/forum-presentations-2023/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
/*
This page is set up to maintain the uri while being moved to a nested location.
*/
import PageLayout from '@layouts/PageLayout.astro';
import FullSizeTemplate from '@components/FullSizeTemplate.astro'
import { getEntry} from 'astro:content';
const page = await getEntry('forum-presentations-2023','forum-presentations-2023');

const faq = await page.render()
const PageContent = faq.Content

---

<PageLayout title="2023 GSA SmartPay® Training Forum Presentations">
<FullSizeTemplate
title="2023 GSA SmartPay® Training Forum Presentations"
parent_nav_path="resources/forum-presentations/"
parent_nav_text = "Return to 2024's GSA SmartPay® Training Forum Presentations"
intro="Here are the forum presentations and videos from the 2023 GSA SmartPay Training Forum."
>
<PageContent />

</FullSizeTemplate>
</PageLayout>
Loading