├── _img
├── uploads
│ └── .keep
├── hero.png
├── hire-us.jpg
├── logo-img.png
└── gsa-logo.svg
├── js
├── admin.js
├── app.js
└── uswds-init.js
├── CODEOWNERS
├── .eleventyignore
├── styles
├── overrides
│ └── _hero.scss
└── styles.scss
├── pages
├── 404.md
├── collections.md
├── policies.md
├── reports.md
├── document.md
└── document-with-sidenav.md
├── _includes
├── logo.html
├── layouts
│ ├── 404.html
│ ├── wide.html
│ ├── default.html
│ ├── post.html
│ ├── data.html
│ ├── base.html
│ └── page.html
├── hero.html
├── tagline.html
├── collection-item.html
├── searchgov
│ └── form.html
├── scripts.html
├── directory-item.html
├── sidenav.html
├── footer.html
├── meta.html
├── highlights.html
├── header.html
├── menu.html
└── pagination-links.html
├── about
└── index.md
├── postcss.config.js
├── pages.json
├── .github
├── pull_request_template.md
└── workflows
│ └── codeql-analysis.yml
├── sitemap.xml.njk
├── departments.html
├── index.html
├── admin
├── index.html
└── config.yml
├── config
├── index.js
└── buildAssets.js
├── posts
├── 2020-01-15-second-post.md
├── 2021-01-16-third-post.md
├── 2019-01-13-an-extra.md
└── 2022-01-14-hello-world.md
├── SECURITY.md
├── departments.liquid
├── _data
├── collections.yaml
├── site.yaml
└── staff.csv
├── LICENSE.md
├── CONTRIBUTING.md
├── members.liquid
├── package.json
├── staff-directory
└── index.html
├── .gitignore
├── .eleventy.js
├── blog
└── index.html
└── README.md
/_img/uploads/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/js/admin.js:
--------------------------------------------------------------------------------
1 | require('decap-cms');
2 |
--------------------------------------------------------------------------------
/js/app.js:
--------------------------------------------------------------------------------
1 | require('@uswds/uswds');
2 |
--------------------------------------------------------------------------------
/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @cloud-gov/pages-ops @cloud-gov/studio
2 |
--------------------------------------------------------------------------------
/js/uswds-init.js:
--------------------------------------------------------------------------------
1 | require('../node_modules/@uswds/uswds/dist/js/uswds-init');
2 |
--------------------------------------------------------------------------------
/_img/hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloud-gov/pages-uswds-11ty/HEAD/_img/hero.png
--------------------------------------------------------------------------------
/_img/hire-us.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloud-gov/pages-uswds-11ty/HEAD/_img/hire-us.jpg
--------------------------------------------------------------------------------
/_img/logo-img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloud-gov/pages-uswds-11ty/HEAD/_img/logo-img.png
--------------------------------------------------------------------------------
/.eleventyignore:
--------------------------------------------------------------------------------
1 | CONTRIBUTING.md
2 | LICENSE.md
3 | README.md
4 | SECURITY.md
5 | .github
6 | config
7 |
--------------------------------------------------------------------------------
/styles/overrides/_hero.scss:
--------------------------------------------------------------------------------
1 | .usa-hero {
2 | background-image: $theme-hero-image !important;
3 | }
4 |
--------------------------------------------------------------------------------
/pages/404.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: layouts/404
3 | permalink: 404.html
4 | title: Page not found
5 | ---
6 |
7 | The requested page was not found (error 404).
--------------------------------------------------------------------------------
/_includes/logo.html:
--------------------------------------------------------------------------------
1 |
12 |
13 |
{{ department.name | escape }} Department
14 | This is a description of the department.
17 |
18 |
19 |
12 |
13 |
{{ member.first_name }} {{ member.last_name }}
14 |
16 |
17 | {{ member.job_title }},
18 | {{ member.department }}
20 |
21 |
22 |
17 |
18 |
Alphabetical Listing
19 | This is a description of the page.
22 |
23 |
24 |
12 |
13 |
Blog
14 | This is a description of the page.
17 |
18 |
19 |