diff --git a/.github/workflows/run-validation.yml b/.github/workflows/run-validation.yml new file mode 100644 index 0000000..54951fe --- /dev/null +++ b/.github/workflows/run-validation.yml @@ -0,0 +1,67 @@ +name: Run validation with RoboValidate + +on: + # Run on any branch so validate branch can always run. + push: + # Commit message validation requires a target branch which is only available in a PR. + pull_request: + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + tools: composer:v2 + # https://github.com/shivammathur/setup-php?tab=readme-ov-file#disable-coverage + coverage: none + + - name: Get composer cache directory + id: composer-cache + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + + - name: Cache Composer dependencies + uses: actions/cache@v4 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer + + - name: Install Composer dependencies and initialize Robo + run: | + composer install --ignore-platform-reqs --optimize-autoloader --no-progress --no-ansi + # If a Robo command exits with a failure and a RoboFile.php does not exist + # a warning about 'Robo is not initialized here. Please run `robo init` to create a new RoboFile.' + # will be created, which might make users think that is what the error was caused by. + if [ ! -f "RoboFile.php" ]; then + vendor/bin/robo init + fi + + - name: Validate a change to any branch + if: github.event_name == 'push' + run: | + # Initialize status variables to 0 + status1=0 + status2=0 + status3=0 + + # Run all commands and capture their exit statuses + vendor/bin/robo validate:branch-name || status1=$? || status1=0 + vendor/bin/robo validate:composer-lock || status3=$? || status3=0 + vendor/bin/robo validate:coding-standards || status2=$? || status2=0 + + # Exit with a non-zero status if any command failed + if [ "$status1" -ne 0 ] || [ "$status2" -ne 0 ] || [ "$status3" -ne 0 ]; then + exit 1 + fi + + - name: Validate pull requests + if: github.event_name == 'pull_request' + run: | + vendor/bin/robo validate:commit-messages --target-branch="${{ github.base_ref }}" --current-branch="${{ github.head_ref }}" diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f51e9f7..2427729 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,8 +40,22 @@ Simply edit or add new content, then run `./robo.sh drupal-project:export-conten ## Validation -We will soon have validation on branches, commits, composer.lock, and code. I'm waiting until our move to Jira. + * Uses [RoboValidate](https://github.com/mattsqd/robovalidate) to run the various validations. + * Can be run manually locally via: `./robo.sh validate:all` + * Is run when any branch is pushed to GitHub via GitHub Actions. Validation on Git commits is only run remotely when a pull request is made so that only new commits are checked. -To start: -* Follow Drupal & DrupalPractice coding standards. -* Create feature branches in the form `feature/short-description` +### Branch Names + +All branches created towards tasks should be in the form `feature/DIGITAL-X-Y`. `X` is the Jira ticket number and `Y` is a short description in lower case separated by dashes. + +### Commits + +Commit messages must be in the form: `DIGITAL-X:YZ`. `X` is the Jira ticket number, `Y` is a space and `Z` is a short description of the work done. + +### Coding Standards + +See the [coding standards](https://www.drupal.org/docs/develop/standards) documentation for Drupal. The project validates against the `Drupal` and `DrupalPractice` documentation. + +#### IDE + +[Enable coding standards help in your IDE](https://www.drupal.org/docs/extending-drupal/contributed-modules/contributed-module-documentation/coder/installing-coder#s-ide-and-editor-configuration) so you're not surprised by a bunch of errors when you push up. diff --git a/composer.json b/composer.json index bc09e7e..7cff450 100644 --- a/composer.json +++ b/composer.json @@ -40,7 +40,8 @@ "drush/drush": "^12.5", "league/commonmark": "^2.5", "mattsqd/drupal-env": "dev-main", - "mattsqd/drupal-env-lando": "dev-main" + "mattsqd/drupal-env-lando": "dev-main", + "mattsqd/robovalidate": "@alpha" }, "conflict": { "drupal/drupal": "*" diff --git a/composer.lock b/composer.lock index 4b35db0..0473f73 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c09325fc5ce8d438b5d896382459119e", + "content-hash": "a0cdbb65e9f93a9932dc2395b10df5e2", "packages": [ { "name": "asm89/stack-cors", @@ -4100,6 +4100,54 @@ }, "time": "2024-07-31T19:04:40+00:00" }, + { + "name": "mattsqd/robovalidate", + "version": "1.4.0-alpha", + "source": { + "type": "git", + "url": "https://github.com/mattsqd/robovalidate.git", + "reference": "db39f0605b1a1a2d94f36a57e07237d0f2326217" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mattsqd/robovalidate/zipball/db39f0605b1a1a2d94f36a57e07237d0f2326217", + "reference": "db39f0605b1a1a2d94f36a57e07237d0f2326217", + "shasum": "" + }, + "require": { + "consolidation/robo": "^3.0.9 || ^4.0.1", + "php": ">=8.0.17" + }, + "require-dev": { + "composer/composer": "^2.5", + "squizlabs/php_codesniffer": "^3.6" + }, + "suggest": { + "squizlabs/php_codesniffer": "Recommended if wanting to validate coding standards." + }, + "type": "robo-tasks", + "autoload": { + "psr-4": { + "RoboValidate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mattsqd", + "email": "mattsqd@users.noreply.github.com" + } + ], + "description": "A group of Robo commands that run various validation tasks on local environments or pipelines", + "support": { + "issues": "https://github.com/mattsqd/robovalidate/issues", + "source": "https://github.com/mattsqd/robovalidate/tree/1.4.0-alpha" + }, + "time": "2024-07-31T17:51:40+00:00" + }, { "name": "mck89/peast", "version": "v1.16.3", @@ -13633,7 +13681,8 @@ "drupal/scheduler_content_moderation_integration": 10, "drupal/uswds_templates": 20, "mattsqd/drupal-env": 20, - "mattsqd/drupal-env-lando": 20 + "mattsqd/drupal-env-lando": 20, + "mattsqd/robovalidate": 15 }, "prefer-stable": true, "prefer-lowest": false, diff --git a/composer.log b/composer.log index 65747ff..fb31c54 100644 --- a/composer.log +++ b/composer.log @@ -19,3 +19,4 @@ ae2759e9c45acbf0d8378d04e842d0a8|Matt Poole|develop|Tue Jul 2 13:45:43 EDT 2024 8a86ff66fb8673b6889c9c4b0ab02673|Christian Medders|feature/config-content-types|Fri Oct 11 10:58:09 EDT 2024|./composer.sh require drupal/field_group 4df8b37fbf31532557c120dddc00593b|Cathy Baptista|feature/dg-26-add-paragraphs-to-content-types|Fri Oct 11 12:00:34 EDT 2024|./composer.sh require drupal/paragraphs 834a753fafaa65adba97795d28e5f6b0|Christian Medders|feature/dg-25-enable-auto-complete|Tue Oct 15 14:25:50 EDT 2024|./composer.sh require drupal/inline_entity_form:^3.0@RC +85ee634efd1237c31d3f2d88c373a543|Matt Poole|feature/DIGITAL-36-validate-action|Thu Oct 17 16:16:53 EDT 2024|./composer.sh require mattsqd/robovalidate:@alpha diff --git a/config/sync/core.entity_form_display.node.authors.default.yml b/config/sync/core.entity_form_display.node.authors.default.yml index dcd3ddc..2618303 100644 --- a/config/sync/core.entity_form_display.node.authors.default.yml +++ b/config/sync/core.entity_form_display.node.authors.default.yml @@ -7,9 +7,7 @@ dependencies: - field.field.node.authors.field_agency_acronym - field.field.node.authors.field_agency_full_name - field.field.node.authors.field_bio - - field.field.node.authors.field_bio_image - field.field.node.authors.field_bio_url - - field.field.node.authors.field_display_name - field.field.node.authors.field_email - field.field.node.authors.field_facebook - field.field.node.authors.field_first_name @@ -28,7 +26,6 @@ dependencies: - content_moderation - field_group - link - - media_library - text third_party_settings: field_group: @@ -98,13 +95,6 @@ content: size: 60 placeholder: '' third_party_settings: { } - field_bio_image: - type: media_library_widget - weight: 19 - region: content - settings: - media_types: { } - third_party_settings: { } field_bio_url: type: link_default weight: 18 @@ -113,14 +103,6 @@ content: placeholder_url: '' placeholder_title: '' third_party_settings: { } - field_display_name: - type: text_textfield - weight: 8 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } field_email: type: email_default weight: 12 diff --git a/config/sync/core.entity_view_display.node.authors.default.yml b/config/sync/core.entity_view_display.node.authors.default.yml index 024c32a..fb895ef 100644 --- a/config/sync/core.entity_view_display.node.authors.default.yml +++ b/config/sync/core.entity_view_display.node.authors.default.yml @@ -7,9 +7,7 @@ dependencies: - field.field.node.authors.field_agency_acronym - field.field.node.authors.field_agency_full_name - field.field.node.authors.field_bio - - field.field.node.authors.field_bio_image - field.field.node.authors.field_bio_url - - field.field.node.authors.field_display_name - field.field.node.authors.field_email - field.field.node.authors.field_facebook - field.field.node.authors.field_first_name @@ -63,15 +61,6 @@ content: third_party_settings: { } weight: 110 region: content - field_bio_image: - type: entity_reference_entity_view - label: above - settings: - view_mode: default - link: false - third_party_settings: { } - weight: 112 - region: content field_bio_url: type: link label: above @@ -84,13 +73,6 @@ content: third_party_settings: { } weight: 111 region: content - field_display_name: - type: text_default - label: above - settings: { } - third_party_settings: { } - weight: 102 - region: content field_email: type: basic_string label: above diff --git a/config/sync/core.entity_view_display.node.authors.teaser.yml b/config/sync/core.entity_view_display.node.authors.teaser.yml index 338e033..896fe4b 100644 --- a/config/sync/core.entity_view_display.node.authors.teaser.yml +++ b/config/sync/core.entity_view_display.node.authors.teaser.yml @@ -8,9 +8,7 @@ dependencies: - field.field.node.authors.field_agency_acronym - field.field.node.authors.field_agency_full_name - field.field.node.authors.field_bio - - field.field.node.authors.field_bio_image - field.field.node.authors.field_bio_url - - field.field.node.authors.field_display_name - field.field.node.authors.field_email - field.field.node.authors.field_facebook - field.field.node.authors.field_first_name @@ -50,9 +48,7 @@ hidden: field_agency_acronym: true field_agency_full_name: true field_bio: true - field_bio_image: true field_bio_url: true - field_display_name: true field_email: true field_facebook: true field_first_name: true diff --git a/config/sync/field.field.node.authors.field_bio_image.yml b/config/sync/field.field.node.authors.field_bio_image.yml deleted file mode 100644 index 16ed690..0000000 --- a/config/sync/field.field.node.authors.field_bio_image.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: dd12e910-45fb-4b42-8160-894acb25cac2 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_bio_image - - media.type.image - - node.type.authors -id: node.authors.field_bio_image -field_name: field_bio_image -entity_type: node -bundle: authors -label: 'Bio Image' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - direction: ASC - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/config/sync/field.field.node.authors.field_display_name.yml b/config/sync/field.field.node.authors.field_display_name.yml deleted file mode 100644 index 7c775ce..0000000 --- a/config/sync/field.field.node.authors.field_display_name.yml +++ /dev/null @@ -1,24 +0,0 @@ -uuid: 825fddda-1007-4c77-9360-a04610fa5fc6 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_display_name - - filter.format.html - - node.type.authors - module: - - text -id: node.authors.field_display_name -field_name: field_display_name -entity_type: node -bundle: authors -label: 'Display Name' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - allowed_formats: - - html -field_type: text diff --git a/config/sync/field.storage.node.field_bio_image.yml b/config/sync/field.storage.node.field_bio_image.yml deleted file mode 100644 index c389b38..0000000 --- a/config/sync/field.storage.node.field_bio_image.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: bac7d901-7091-42cc-a803-3536639029ba -langcode: en -status: true -dependencies: - module: - - media - - node -id: node.field_bio_image -field_name: field_bio_image -entity_type: node -type: entity_reference -settings: - target_type: media -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/config/sync/field.storage.node.field_display_name.yml b/config/sync/field.storage.node.field_display_name.yml deleted file mode 100644 index 1ed6012..0000000 --- a/config/sync/field.storage.node.field_display_name.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 17279889-6f3e-4851-abf1-35d796d73669 -langcode: en -status: true -dependencies: - module: - - node - - text -id: node.field_display_name -field_name: field_display_name -entity_type: node -type: text -settings: - max_length: 255 -module: text -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/robo.yml b/robo.yml new file mode 100644 index 0000000..0bb4757 --- /dev/null +++ b/robo.yml @@ -0,0 +1,24 @@ +# Automatically Generated from 'robo validate:init-robo-yml'. +# See ./vendor/mattsqd/robovalidate/robo.example.yml for additional context. +command: + validate: + options: + project-id: DIGITAL + branch-name: + options: + # These refer to all the possible branch names. There are 4 different types and they will be + # described below. If you'd like to override any of these, you must put all back in that you'd like to + # use, they will not be merged together. + valid-branch-names: + # Matches a branch named 'develop'. + - 'explicit|develop' + # Matches a branch named 'main'. + - 'explicit|main' + # Matches a custom regular expression found in $pattern. + - 'custom|' + # Matches a branch like: hotfix/2.1.3. + - 'semantic|hotfix' + # Matches a branch like (the last number MUST be a 0): release/2.1.0. + - 'semantic_end_0|release' + # Matches a branch named 'stage' (MOD FROM DEFAULTS). + - 'explicit|stage' diff --git a/web/modules/custom/convert_text/src/ConvertText.php b/web/modules/custom/convert_text/src/ConvertText.php index a1b274e..115706d 100644 --- a/web/modules/custom/convert_text/src/ConvertText.php +++ b/web/modules/custom/convert_text/src/ConvertText.php @@ -22,7 +22,7 @@ class ConvertText { * @return string * The converted text. */ - static protected function convertText(string $source_text, string $field_type): string { + protected static function convert(string $source_text, string $field_type): string { // Start by removing space before and after. $source_text = trim($source_text); // Remove extra spaces before new lines. @@ -30,7 +30,7 @@ static protected function convertText(string $source_text, string $field_type): switch ($field_type) { case 'plain_text': - return html_entity_decode($source_text,ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 , 'UTF-8'); + return html_entity_decode($source_text, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, 'UTF-8'); case 'html': $converter = new CommonMarkConverter(); @@ -49,23 +49,23 @@ static protected function convertText(string $source_text, string $field_type): * The original source value. * * @return string - * The converted text. + * The converted text. */ - static public function plainText(string $source_text): string { - return self::convertText($source_text, 'plain_text'); + public static function plainText(string $source_text): string { + return self::convert($source_text, 'plain_text'); } /** * Gets text ready to be stored in html text fields. * * @var string $source_text - * The original source value. + * The original source value. * * @return string - * The converted text. + * The converted text. */ - static public function htmlText(string $source_text): string { - return self::convertText($source_text, 'html'); + public static function htmlText(string $source_text): string { + return self::convert($source_text, 'html'); } -} \ No newline at end of file +} diff --git a/web/modules/custom/convert_text/src/Form/ConvertTextForm.php b/web/modules/custom/convert_text/src/Form/ConvertTextForm.php index 39a067f..015af1c 100644 --- a/web/modules/custom/convert_text/src/Form/ConvertTextForm.php +++ b/web/modules/custom/convert_text/src/Form/ConvertTextForm.php @@ -4,9 +4,9 @@ namespace Drupal\convert_text\Form; -use Drupal\convert_text\ConvertText; use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormStateInterface; +use Drupal\convert_text\ConvertText; /** * Provides a Convert Text form. @@ -57,7 +57,7 @@ public function buildForm(array $form, FormStateInterface $form_state): array { 'reset' => [ '#type' => 'submit', '#value' => $this->t('Reset'), - ] + ], ]; return $form; diff --git a/web/modules/custom/default_content_config/content/file/003cf81c-66f0-4e2b-9531-de671277fc70.yml b/web/modules/custom/default_content_config/content/file/003cf81c-66f0-4e2b-9531-de671277fc70.yml new file mode 100644 index 0000000..af8159b --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/003cf81c-66f0-4e2b-9531-de671277fc70.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 003cf81c-66f0-4e2b-9531-de671277fc70 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: fedramp-icon.png + uri: + - + value: 'public://2024-10/fedramp-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 4106 + status: + - + value: true + created: + - + value: 1730152940 diff --git a/web/modules/custom/default_content_config/content/file/0ec3708e-1d2d-4879-8f4c-04145eb83b3a.yml b/web/modules/custom/default_content_config/content/file/0ec3708e-1d2d-4879-8f4c-04145eb83b3a.yml new file mode 100644 index 0000000..2554901 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/0ec3708e-1d2d-4879-8f4c-04145eb83b3a.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 0ec3708e-1d2d-4879-8f4c-04145eb83b3a + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: kaufmann-404-page-spike.png + uri: + - + value: 'public://2024-10/kaufmann-404-page-spike.png' + filemime: + - + value: image/png + filesize: + - + value: 161774 + status: + - + value: true + created: + - + value: 1729710809 diff --git a/web/modules/custom/default_content_config/content/file/11b3c503-cd86-4601-883b-928b8f2cf717.yml b/web/modules/custom/default_content_config/content/file/11b3c503-cd86-4601-883b-928b8f2cf717.yml new file mode 100644 index 0000000..731d489 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/11b3c503-cd86-4601-883b-928b8f2cf717.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 11b3c503-cd86-4601-883b-928b8f2cf717 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: topics-og-primary-image.jpg + uri: + - + value: 'public://2024-10/topics-og-primary-image_0.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 40667 + status: + - + value: true + created: + - + value: 1729472729 diff --git a/web/modules/custom/default_content_config/content/file/14b18359-d908-4660-81fd-887fc7e5d986.yml b/web/modules/custom/default_content_config/content/file/14b18359-d908-4660-81fd-887fc7e5d986.yml new file mode 100644 index 0000000..692efdd --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/14b18359-d908-4660-81fd-887fc7e5d986.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 14b18359-d908-4660-81fd-887fc7e5d986 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: usagov-icon.png + uri: + - + value: 'public://2024-10/usagov-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 2619 + status: + - + value: true + created: + - + value: 1730153425 diff --git a/web/modules/custom/default_content_config/content/file/15f8ba87-e748-4ce9-99a1-005e0c6fa75f.yml b/web/modules/custom/default_content_config/content/file/15f8ba87-e748-4ce9-99a1-005e0c6fa75f.yml new file mode 100644 index 0000000..03cef51 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/15f8ba87-e748-4ce9-99a1-005e0c6fa75f.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 15f8ba87-e748-4ce9-99a1-005e0c6fa75f + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: digitalgov-icon.png + uri: + - + value: 'public://2024-10/digitalgov-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 2261 + status: + - + value: true + created: + - + value: 1730151686 diff --git a/web/modules/custom/default_content_config/content/file/18f-icon.png b/web/modules/custom/default_content_config/content/file/18f-icon.png new file mode 100644 index 0000000..671740a Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/18f-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/1a32a323-f872-42ed-85ed-486d71dba022.yml b/web/modules/custom/default_content_config/content/file/1a32a323-f872-42ed-85ed-486d71dba022.yml new file mode 100644 index 0000000..0f0b807 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/1a32a323-f872-42ed-85ed-486d71dba022.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 1a32a323-f872-42ed-85ed-486d71dba022 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: 18f-icon.png + uri: + - + value: 'public://2024-10/18f-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 1298 + status: + - + value: true + created: + - + value: 1730153194 diff --git a/web/modules/custom/default_content_config/content/file/2024-uswds-monthly-call-march-title-card.png b/web/modules/custom/default_content_config/content/file/2024-uswds-monthly-call-march-title-card.png new file mode 100644 index 0000000..e1d6c0d Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/2024-uswds-monthly-call-march-title-card.png differ diff --git a/web/modules/custom/default_content_config/content/file/34293acf-1466-49dc-a7bb-fa3c0b4742ed.yml b/web/modules/custom/default_content_config/content/file/34293acf-1466-49dc-a7bb-fa3c0b4742ed.yml new file mode 100644 index 0000000..501b0a0 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/34293acf-1466-49dc-a7bb-fa3c0b4742ed.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 34293acf-1466-49dc-a7bb-fa3c0b4742ed + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: guide-dap.png + uri: + - + value: 'public://2024-10/guide-dap_0.png' + filemime: + - + value: image/png + filesize: + - + value: 47058 + status: + - + value: true + created: + - + value: 1729463943 diff --git a/web/modules/custom/default_content_config/content/file/3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3.yml b/web/modules/custom/default_content_config/content/file/3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3.yml new file mode 100644 index 0000000..0490c7b --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: dotgov-icon.png + uri: + - + value: 'public://2024-10/dotgov-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 2057 + status: + - + value: true + created: + - + value: 1730153074 diff --git a/web/modules/custom/default_content_config/content/file/3bd037d5-850f-4ab9-a99a-e8e066c19726.yml b/web/modules/custom/default_content_config/content/file/3bd037d5-850f-4ab9-a99a-e8e066c19726.yml new file mode 100644 index 0000000..58f25e8 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/3bd037d5-850f-4ab9-a99a-e8e066c19726.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 3bd037d5-850f-4ab9-a99a-e8e066c19726 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: doj-icon.png + uri: + - + value: 'public://2024-10/doj-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 8125 + status: + - + value: true + created: + - + value: 1730153283 diff --git a/web/modules/custom/default_content_config/content/file/3fe1afd9-c476-4db6-8534-199cf543d9d5.yml b/web/modules/custom/default_content_config/content/file/3fe1afd9-c476-4db6-8534-199cf543d9d5.yml new file mode 100644 index 0000000..3bbf738 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/3fe1afd9-c476-4db6-8534-199cf543d9d5.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 3fe1afd9-c476-4db6-8534-199cf543d9d5 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: communities-card-pl.png + uri: + - + value: 'public://2024-10/communities-card-pl_0.png' + filemime: + - + value: image/png + filesize: + - + value: 86883 + status: + - + value: true + created: + - + value: 1729618993 diff --git a/web/modules/custom/default_content_config/content/file/62ee3632-95b5-4ea0-9ec2-a666f426af5f.yml b/web/modules/custom/default_content_config/content/file/62ee3632-95b5-4ea0-9ec2-a666f426af5f.yml new file mode 100644 index 0000000..c27ff9d --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/62ee3632-95b5-4ea0-9ec2-a666f426af5f.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 62ee3632-95b5-4ea0-9ec2-a666f426af5f + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: 2024-uswds-monthly-call-march-title-card.png + uri: + - + value: 'public://2024-10/2024-uswds-monthly-call-march-title-card_0.png' + filemime: + - + value: image/png + filesize: + - + value: 99754 + status: + - + value: true + created: + - + value: 1729462358 diff --git a/web/modules/custom/default_content_config/content/file/79eea7ab-18ce-4c1d-8cee-4c7c5d226c88.yml b/web/modules/custom/default_content_config/content/file/79eea7ab-18ce-4c1d-8cee-4c7c5d226c88.yml new file mode 100644 index 0000000..b07e5ce --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/79eea7ab-18ce-4c1d-8cee-4c7c5d226c88.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 79eea7ab-18ce-4c1d-8cee-4c7c5d226c88 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: creative-brain-concept-thanaphiphat-istock-thinkstock-494897999.png + uri: + - + value: 'public://2024-10/creative-brain-concept-thanaphiphat-istock-thinkstock-494897999_0.png' + filemime: + - + value: image/png + filesize: + - + value: 10639074 + status: + - + value: true + created: + - + value: 1729470445 diff --git a/web/modules/custom/default_content_config/content/file/84b1bb62-f07a-4aa5-8b87-43e97d189d60.yml b/web/modules/custom/default_content_config/content/file/84b1bb62-f07a-4aa5-8b87-43e97d189d60.yml new file mode 100644 index 0000000..c675ec2 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/84b1bb62-f07a-4aa5-8b87-43e97d189d60.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 84b1bb62-f07a-4aa5-8b87-43e97d189d60 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: communities-card-comms.png + uri: + - + value: 'public://2024-10/communities-card-comms_0.png' + filemime: + - + value: image/png + filesize: + - + value: 90897 + status: + - + value: true + created: + - + value: 1729463210 diff --git a/web/modules/custom/default_content_config/content/file/8701b58c-ec06-4767-a4d2-f2c478545228.yml b/web/modules/custom/default_content_config/content/file/8701b58c-ec06-4767-a4d2-f2c478545228.yml new file mode 100644 index 0000000..bc7239e --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/8701b58c-ec06-4767-a4d2-f2c478545228.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 8701b58c-ec06-4767-a4d2-f2c478545228 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: coe-icon.png + uri: + - + value: 'public://2024-10/coe-icon.png' + filemime: + - + value: image/png + filesize: + - + value: 4075 + status: + - + value: true + created: + - + value: 1730153511 diff --git a/web/modules/custom/default_content_config/content/file/93810db1-d94a-4e2f-9615-c70b44fae0de.yml b/web/modules/custom/default_content_config/content/file/93810db1-d94a-4e2f-9615-c70b44fae0de.yml new file mode 100644 index 0000000..f7722f0 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/93810db1-d94a-4e2f-9615-c70b44fae0de.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 93810db1-d94a-4e2f-9615-c70b44fae0de + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: pink_logo.jpeg + uri: + - + value: 'public://2024-10/pink_logo_0.jpeg' + filemime: + - + value: image/jpeg + filesize: + - + value: 10958 + status: + - + value: true + created: + - + value: 1729460198 diff --git a/web/modules/custom/default_content_config/content/file/adf49a05-8e7f-4796-b8a8-035b433efee4.yml b/web/modules/custom/default_content_config/content/file/adf49a05-8e7f-4796-b8a8-035b433efee4.yml new file mode 100644 index 0000000..0ff4319 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/adf49a05-8e7f-4796-b8a8-035b433efee4.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: adf49a05-8e7f-4796-b8a8-035b433efee4 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: dap-10-years-total-daily-visitors.png + uri: + - + value: 'public://2024-10/dap-10-years-total-daily-visitors_0.png' + filemime: + - + value: image/png + filesize: + - + value: 53273 + status: + - + value: true + created: + - + value: 1729471922 diff --git a/web/modules/custom/default_content_config/content/file/coe-icon.png b/web/modules/custom/default_content_config/content/file/coe-icon.png new file mode 100644 index 0000000..5807172 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/coe-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/communities-card-comms.png b/web/modules/custom/default_content_config/content/file/communities-card-comms.png new file mode 100644 index 0000000..7b3dad0 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/communities-card-comms.png differ diff --git a/web/modules/custom/default_content_config/content/file/communities-card-pl.png b/web/modules/custom/default_content_config/content/file/communities-card-pl.png new file mode 100644 index 0000000..cb8b56b Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/communities-card-pl.png differ diff --git a/web/modules/custom/default_content_config/content/file/communities-card-web-mgrs.png b/web/modules/custom/default_content_config/content/file/communities-card-web-mgrs.png new file mode 100644 index 0000000..dea9bd5 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/communities-card-web-mgrs.png differ diff --git a/web/modules/custom/default_content_config/content/file/creative-brain-concept-thanaphiphat-istock-thinkstock-494897999.png b/web/modules/custom/default_content_config/content/file/creative-brain-concept-thanaphiphat-istock-thinkstock-494897999.png new file mode 100644 index 0000000..5471da5 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/creative-brain-concept-thanaphiphat-istock-thinkstock-494897999.png differ diff --git a/web/modules/custom/default_content_config/content/file/d4610da5-8591-45c3-a8f1-8f532b445fc9.yml b/web/modules/custom/default_content_config/content/file/d4610da5-8591-45c3-a8f1-8f532b445fc9.yml new file mode 100644 index 0000000..f61e80f --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/d4610da5-8591-45c3-a8f1-8f532b445fc9.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: d4610da5-8591-45c3-a8f1-8f532b445fc9 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: guide-mobile-principles.png + uri: + - + value: 'public://2024-10/guide-mobile-principles_0.png' + filemime: + - + value: image/png + filesize: + - + value: 34835 + status: + - + value: true + created: + - + value: 1729464127 diff --git a/web/modules/custom/default_content_config/content/file/dap-10-years-total-daily-visitors.png b/web/modules/custom/default_content_config/content/file/dap-10-years-total-daily-visitors.png new file mode 100644 index 0000000..0779f28 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/dap-10-years-total-daily-visitors.png differ diff --git a/web/modules/custom/default_content_config/content/file/digitalgov-icon.png b/web/modules/custom/default_content_config/content/file/digitalgov-icon.png new file mode 100644 index 0000000..435783f Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/digitalgov-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/doj-icon.png b/web/modules/custom/default_content_config/content/file/doj-icon.png new file mode 100644 index 0000000..f99ef1f Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/doj-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/dotgov-icon.png b/web/modules/custom/default_content_config/content/file/dotgov-icon.png new file mode 100644 index 0000000..5b4f918 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/dotgov-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/e02da519-38aa-4c6f-90e7-1677c3c53c62.yml b/web/modules/custom/default_content_config/content/file/e02da519-38aa-4c6f-90e7-1677c3c53c62.yml new file mode 100644 index 0000000..70c9e2b --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/e02da519-38aa-4c6f-90e7-1677c3c53c62.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: e02da519-38aa-4c6f-90e7-1677c3c53c62 + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: communities-card-web-mgrs.png + uri: + - + value: 'public://2024-10/communities-card-web-mgrs_0.png' + filemime: + - + value: image/png + filesize: + - + value: 91566 + status: + - + value: true + created: + - + value: 1729611457 diff --git a/web/modules/custom/default_content_config/content/file/ecd6a311-13ac-4394-878e-5b36a2121a3e.yml b/web/modules/custom/default_content_config/content/file/ecd6a311-13ac-4394-878e-5b36a2121a3e.yml new file mode 100644 index 0000000..cab547a --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/ecd6a311-13ac-4394-878e-5b36a2121a3e.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: ecd6a311-13ac-4394-878e-5b36a2121a3e + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: web_analytics.png + uri: + - + value: 'public://2024-10/web_analytics_0.png' + filemime: + - + value: image/png + filesize: + - + value: 90900 + status: + - + value: true + created: + - + value: 1729636715 diff --git a/web/modules/custom/default_content_config/content/file/fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d.yml b/web/modules/custom/default_content_config/content/file/fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d.yml new file mode 100644 index 0000000..49ab031 --- /dev/null +++ b/web/modules/custom/default_content_config/content/file/fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d + default_langcode: en +default: + uid: + - + target_id: 1 + filename: + - + value: fpo.jpeg + uri: + - + value: 'public://2024-10/fpo_0.jpeg' + filemime: + - + value: image/jpeg + filesize: + - + value: 1290 + status: + - + value: true + created: + - + value: 1729603979 diff --git a/web/modules/custom/default_content_config/content/file/fedramp-icon.png b/web/modules/custom/default_content_config/content/file/fedramp-icon.png new file mode 100644 index 0000000..cf3dfa4 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/fedramp-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/fpo.jpeg b/web/modules/custom/default_content_config/content/file/fpo.jpeg new file mode 100644 index 0000000..9e5f082 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/fpo.jpeg differ diff --git a/web/modules/custom/default_content_config/content/file/guide-dap.png b/web/modules/custom/default_content_config/content/file/guide-dap.png new file mode 100644 index 0000000..e309080 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/guide-dap.png differ diff --git a/web/modules/custom/default_content_config/content/file/guide-mobile-principles.png b/web/modules/custom/default_content_config/content/file/guide-mobile-principles.png new file mode 100644 index 0000000..8b96233 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/guide-mobile-principles.png differ diff --git a/web/modules/custom/default_content_config/content/file/kaufmann-404-page-spike.png b/web/modules/custom/default_content_config/content/file/kaufmann-404-page-spike.png new file mode 100644 index 0000000..ae454bf Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/kaufmann-404-page-spike.png differ diff --git a/web/modules/custom/default_content_config/content/file/pink_logo.jpeg b/web/modules/custom/default_content_config/content/file/pink_logo.jpeg new file mode 100644 index 0000000..5192ab5 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/pink_logo.jpeg differ diff --git a/web/modules/custom/default_content_config/content/file/topics-og-primary-image.jpg b/web/modules/custom/default_content_config/content/file/topics-og-primary-image.jpg new file mode 100644 index 0000000..ec54921 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/topics-og-primary-image.jpg differ diff --git a/web/modules/custom/default_content_config/content/file/usagov-icon.png b/web/modules/custom/default_content_config/content/file/usagov-icon.png new file mode 100644 index 0000000..a508cb6 Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/usagov-icon.png differ diff --git a/web/modules/custom/default_content_config/content/file/web_analytics.png b/web/modules/custom/default_content_config/content/file/web_analytics.png new file mode 100644 index 0000000..af7642a Binary files /dev/null and b/web/modules/custom/default_content_config/content/file/web_analytics.png differ diff --git a/web/modules/custom/default_content_config/content/media/0e7e6ef9-a1e2-4dc4-925b-402bdf4215bb.yml b/web/modules/custom/default_content_config/content/media/0e7e6ef9-a1e2-4dc4-925b-402bdf4215bb.yml new file mode 100644 index 0000000..8307e62 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/0e7e6ef9-a1e2-4dc4-925b-402bdf4215bb.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 0e7e6ef9-a1e2-4dc4-925b-402bdf4215bb + bundle: image + default_langcode: en + depends: + 1a32a323-f872-42ed-85ed-486d71dba022: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: 18f-icon.png + created: + - + value: 1730153194 + field_media_image: + - + entity: 1a32a323-f872-42ed-85ed-486d71dba022 + alt: 18f + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/15e82358-a177-4949-af9f-4bd344d44083.yml b/web/modules/custom/default_content_config/content/media/15e82358-a177-4949-af9f-4bd344d44083.yml new file mode 100644 index 0000000..a114947 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/15e82358-a177-4949-af9f-4bd344d44083.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 15e82358-a177-4949-af9f-4bd344d44083 + bundle: image + default_langcode: en + depends: + 62ee3632-95b5-4ea0-9ec2-a666f426af5f: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: 2024-uswds-monthly-call-march-title-card.png + created: + - + value: 1729462358 + field_media_image: + - + entity: 62ee3632-95b5-4ea0-9ec2-a666f426af5f + alt: 'uswds monthly call' + title: '' + width: 2390 + height: 1244 diff --git a/web/modules/custom/default_content_config/content/media/1e945b0b-bcf5-4df7-9105-6c222eb70c13.yml b/web/modules/custom/default_content_config/content/media/1e945b0b-bcf5-4df7-9105-6c222eb70c13.yml new file mode 100644 index 0000000..afded84 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/1e945b0b-bcf5-4df7-9105-6c222eb70c13.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 1e945b0b-bcf5-4df7-9105-6c222eb70c13 + bundle: image + default_langcode: en + depends: + 34293acf-1466-49dc-a7bb-fa3c0b4742ed: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: guide-dap.png + created: + - + value: 1729463943 + field_media_image: + - + entity: 34293acf-1466-49dc-a7bb-fa3c0b4742ed + alt: 'Guide DAP' + title: '' + width: 1200 + height: 630 diff --git a/web/modules/custom/default_content_config/content/media/261021f8-1c56-4529-b0fe-e008bb65d033.yml b/web/modules/custom/default_content_config/content/media/261021f8-1c56-4529-b0fe-e008bb65d033.yml new file mode 100644 index 0000000..7566926 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/261021f8-1c56-4529-b0fe-e008bb65d033.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 261021f8-1c56-4529-b0fe-e008bb65d033 + bundle: image + default_langcode: en + depends: + adf49a05-8e7f-4796-b8a8-035b433efee4: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: dap-10-years-total-daily-visitors.png + created: + - + value: 1729471922 + field_media_image: + - + entity: adf49a05-8e7f-4796-b8a8-035b433efee4 + alt: dap + title: '' + width: 1200 + height: 500 diff --git a/web/modules/custom/default_content_config/content/media/37560ea7-308c-42dc-b77b-0a5d982dbedb.yml b/web/modules/custom/default_content_config/content/media/37560ea7-308c-42dc-b77b-0a5d982dbedb.yml new file mode 100644 index 0000000..1d7b5fb --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/37560ea7-308c-42dc-b77b-0a5d982dbedb.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 37560ea7-308c-42dc-b77b-0a5d982dbedb + bundle: image + default_langcode: en + depends: + 8701b58c-ec06-4767-a4d2-f2c478545228: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: coe-icon.png + created: + - + value: 1730153511 + field_media_image: + - + entity: 8701b58c-ec06-4767-a4d2-f2c478545228 + alt: coe + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/44a758d4-6f2e-4e59-91b1-981e85f00149.yml b/web/modules/custom/default_content_config/content/media/44a758d4-6f2e-4e59-91b1-981e85f00149.yml new file mode 100644 index 0000000..a960c67 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/44a758d4-6f2e-4e59-91b1-981e85f00149.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 44a758d4-6f2e-4e59-91b1-981e85f00149 + bundle: image + default_langcode: en + depends: + 3fe1afd9-c476-4db6-8534-199cf543d9d5: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: communities-card-pl.png + created: + - + value: 1729618993 + field_media_image: + - + entity: 3fe1afd9-c476-4db6-8534-199cf543d9d5 + alt: 'Communities Card' + title: '' + width: 2501 + height: 1307 diff --git a/web/modules/custom/default_content_config/content/media/47d1784c-68a3-4a3b-a341-3e4f8d092253.yml b/web/modules/custom/default_content_config/content/media/47d1784c-68a3-4a3b-a341-3e4f8d092253.yml new file mode 100644 index 0000000..bb19aef --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/47d1784c-68a3-4a3b-a341-3e4f8d092253.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 47d1784c-68a3-4a3b-a341-3e4f8d092253 + bundle: image + default_langcode: en + depends: + 11b3c503-cd86-4601-883b-928b8f2cf717: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: topics-og-primary-image.jpg + created: + - + value: 1729472729 + field_media_image: + - + entity: 11b3c503-cd86-4601-883b-928b8f2cf717 + alt: topics + title: '' + width: 870 + height: 630 diff --git a/web/modules/custom/default_content_config/content/media/48556cac-53e4-4f0e-85c9-b44cd9867296.yml b/web/modules/custom/default_content_config/content/media/48556cac-53e4-4f0e-85c9-b44cd9867296.yml new file mode 100644 index 0000000..efceb84 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/48556cac-53e4-4f0e-85c9-b44cd9867296.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 48556cac-53e4-4f0e-85c9-b44cd9867296 + bundle: image + default_langcode: en + depends: + 0ec3708e-1d2d-4879-8f4c-04145eb83b3a: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: kaufmann-404-page-spike.png + created: + - + value: 1729710809 + field_media_image: + - + entity: 0ec3708e-1d2d-4879-8f4c-04145eb83b3a + alt: 'page spike' + title: '' + width: 844 + height: 670 diff --git a/web/modules/custom/default_content_config/content/media/49e0420f-8aa9-4f68-8752-e982122d80e0.yml b/web/modules/custom/default_content_config/content/media/49e0420f-8aa9-4f68-8752-e982122d80e0.yml new file mode 100644 index 0000000..383a656 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/49e0420f-8aa9-4f68-8752-e982122d80e0.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 49e0420f-8aa9-4f68-8752-e982122d80e0 + bundle: image + default_langcode: en + depends: + ecd6a311-13ac-4394-878e-5b36a2121a3e: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: web_analytics.png + created: + - + value: 1729636715 + field_media_image: + - + entity: ecd6a311-13ac-4394-878e-5b36a2121a3e + alt: 'Web Analytics' + title: '' + width: 2501 + height: 1307 diff --git a/web/modules/custom/default_content_config/content/media/6198c0ab-4772-4efd-8280-1070a4c662a8.yml b/web/modules/custom/default_content_config/content/media/6198c0ab-4772-4efd-8280-1070a4c662a8.yml new file mode 100644 index 0000000..3c8154f --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/6198c0ab-4772-4efd-8280-1070a4c662a8.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 6198c0ab-4772-4efd-8280-1070a4c662a8 + bundle: image + default_langcode: en + depends: + 14b18359-d908-4660-81fd-887fc7e5d986: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: usagov-icon.png + created: + - + value: 1730153425 + field_media_image: + - + entity: 14b18359-d908-4660-81fd-887fc7e5d986 + alt: usagov + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/6364ee50-cdc1-4b6c-8ed5-6d0a3188c73b.yml b/web/modules/custom/default_content_config/content/media/6364ee50-cdc1-4b6c-8ed5-6d0a3188c73b.yml new file mode 100644 index 0000000..6e1ec7c --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/6364ee50-cdc1-4b6c-8ed5-6d0a3188c73b.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 6364ee50-cdc1-4b6c-8ed5-6d0a3188c73b + bundle: image + default_langcode: en + depends: + 003cf81c-66f0-4e2b-9531-de671277fc70: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: fedramp-icon.png + created: + - + value: 1730152940 + field_media_image: + - + entity: 003cf81c-66f0-4e2b-9531-de671277fc70 + alt: fedramp + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/6bd8641f-84c6-4ddb-b8b2-9c076b017198.yml b/web/modules/custom/default_content_config/content/media/6bd8641f-84c6-4ddb-b8b2-9c076b017198.yml new file mode 100644 index 0000000..3b2df9a --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/6bd8641f-84c6-4ddb-b8b2-9c076b017198.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + bundle: image + default_langcode: en + depends: + fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: fpo.jpeg + created: + - + value: 1729603979 + field_media_image: + - + entity: fb33e5f3-246b-4db7-b5a2-3c86bbbd9d3d + alt: FPO + title: '' + width: 204 + height: 192 diff --git a/web/modules/custom/default_content_config/content/media/8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d.yml b/web/modules/custom/default_content_config/content/media/8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d.yml new file mode 100644 index 0000000..754b51b --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d + bundle: image + default_langcode: en + depends: + 15f8ba87-e748-4ce9-99a1-005e0c6fa75f: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: digitalgov-icon.png + created: + - + value: 1730151686 + field_media_image: + - + entity: 15f8ba87-e748-4ce9-99a1-005e0c6fa75f + alt: digitalgov + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/8c66bd6c-e163-46cd-b915-2575b5686eec.yml b/web/modules/custom/default_content_config/content/media/8c66bd6c-e163-46cd-b915-2575b5686eec.yml new file mode 100644 index 0000000..be59b0b --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/8c66bd6c-e163-46cd-b915-2575b5686eec.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 8c66bd6c-e163-46cd-b915-2575b5686eec + bundle: image + default_langcode: en + depends: + 79eea7ab-18ce-4c1d-8cee-4c7c5d226c88: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: creative-brain-concept-thanaphiphat-istock-thinkstock-494897999.png + created: + - + value: 1729470445 + field_media_image: + - + entity: 79eea7ab-18ce-4c1d-8cee-4c7c5d226c88 + alt: 'creative brain concept' + title: '' + width: 4556 + height: 3644 diff --git a/web/modules/custom/default_content_config/content/media/a562cb6c-d534-46b3-bf5d-4b21e0422e4b.yml b/web/modules/custom/default_content_config/content/media/a562cb6c-d534-46b3-bf5d-4b21e0422e4b.yml new file mode 100644 index 0000000..875e4c0 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/a562cb6c-d534-46b3-bf5d-4b21e0422e4b.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: a562cb6c-d534-46b3-bf5d-4b21e0422e4b + bundle: image + default_langcode: en + depends: + 3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: dotgov-icon.png + created: + - + value: 1730153074 + field_media_image: + - + entity: 3a18cd8e-58c6-4e48-b1c9-6acdbb6808b3 + alt: 'dot gov' + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/c2eb37c0-02a5-4a36-90bc-a7039449b61b.yml b/web/modules/custom/default_content_config/content/media/c2eb37c0-02a5-4a36-90bc-a7039449b61b.yml new file mode 100644 index 0000000..7c99b4b --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/c2eb37c0-02a5-4a36-90bc-a7039449b61b.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: c2eb37c0-02a5-4a36-90bc-a7039449b61b + bundle: image + default_langcode: en + depends: + d4610da5-8591-45c3-a8f1-8f532b445fc9: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: guide-mobile-principles.png + created: + - + value: 1729464127 + field_media_image: + - + entity: d4610da5-8591-45c3-a8f1-8f532b445fc9 + alt: 'Guide Mobile Principles' + title: '' + width: 1200 + height: 630 diff --git a/web/modules/custom/default_content_config/content/media/c807a95f-ee73-4bd2-b616-0e56b5ff1ad1.yml b/web/modules/custom/default_content_config/content/media/c807a95f-ee73-4bd2-b616-0e56b5ff1ad1.yml new file mode 100644 index 0000000..36ac967 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/c807a95f-ee73-4bd2-b616-0e56b5ff1ad1.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: c807a95f-ee73-4bd2-b616-0e56b5ff1ad1 + bundle: image + default_langcode: en + depends: + 84b1bb62-f07a-4aa5-8b87-43e97d189d60: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: communities-card-comms.png + created: + - + value: 1729463210 + field_media_image: + - + entity: 84b1bb62-f07a-4aa5-8b87-43e97d189d60 + alt: 'Communities Card Comm' + title: '' + width: 2501 + height: 1307 diff --git a/web/modules/custom/default_content_config/content/media/d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d.yml b/web/modules/custom/default_content_config/content/media/d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d.yml new file mode 100644 index 0000000..dd0af95 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d + bundle: image + default_langcode: en + depends: + 3bd037d5-850f-4ab9-a99a-e8e066c19726: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: doj-icon.png + created: + - + value: 1730153283 + field_media_image: + - + entity: 3bd037d5-850f-4ab9-a99a-e8e066c19726 + alt: doj + title: '' + width: 50 + height: 50 diff --git a/web/modules/custom/default_content_config/content/media/df325658-effa-4ff9-9e6b-abfbaf437ff9.yml b/web/modules/custom/default_content_config/content/media/df325658-effa-4ff9-9e6b-abfbaf437ff9.yml new file mode 100644 index 0000000..73a16de --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/df325658-effa-4ff9-9e6b-abfbaf437ff9.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: df325658-effa-4ff9-9e6b-abfbaf437ff9 + bundle: image + default_langcode: en + depends: + 93810db1-d94a-4e2f-9615-c70b44fae0de: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: pink_logo.jpeg + created: + - + value: 1729460198 + field_media_image: + - + entity: 93810db1-d94a-4e2f-9615-c70b44fae0de + alt: 'Communities Logo' + title: '' + width: 170 + height: 162 diff --git a/web/modules/custom/default_content_config/content/media/f53fc4bd-54e8-49b3-b419-73525681c8a1.yml b/web/modules/custom/default_content_config/content/media/f53fc4bd-54e8-49b3-b419-73525681c8a1.yml new file mode 100644 index 0000000..0374c65 --- /dev/null +++ b/web/modules/custom/default_content_config/content/media/f53fc4bd-54e8-49b3-b419-73525681c8a1.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f53fc4bd-54e8-49b3-b419-73525681c8a1 + bundle: image + default_langcode: en + depends: + e02da519-38aa-4c6f-90e7-1677c3c53c62: file +default: + status: + - + value: true + uid: + - + target_id: 1 + name: + - + value: communities-card-web-mgrs.png + created: + - + value: 1729611457 + field_media_image: + - + entity: e02da519-38aa-4c6f-90e7-1677c3c53c62 + alt: 'Web Managers Community' + title: '' + width: 2501 + height: 1307 diff --git a/web/modules/custom/default_content_config/content/node/063eb5b2-3a79-4559-a893-a149cfa2c757.yml b/web/modules/custom/default_content_config/content/node/063eb5b2-3a79-4559-a893-a149cfa2c757.yml new file mode 100644 index 0000000..087ea34 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/063eb5b2-3a79-4559-a893-a149cfa2c757.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 063eb5b2-3a79-4559-a893-a149cfa2c757 + bundle: source + default_langcode: en + depends: + a562cb6c-d534-46b3-bf5d-4b21e0422e4b: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: dotgov + created: + - + value: 1730152679 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: a562cb6c-d534-46b3-bf5d-4b21e0422e4b diff --git a/web/modules/custom/default_content_config/content/node/0a1a61c6-b4aa-4e54-bf83-8e397e28e6f2.yml b/web/modules/custom/default_content_config/content/node/0a1a61c6-b4aa-4e54-bf83-8e397e28e6f2.yml new file mode 100644 index 0000000..010b672 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/0a1a61c6-b4aa-4e54-bf83-8e397e28e6f2.yml @@ -0,0 +1,47 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 0a1a61c6-b4aa-4e54-bf83-8e397e28e6f2 + bundle: topics + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Topics-all required fields' + created: + - + value: 1729471958 + promote: + - + value: false + sticky: + - + value: false + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 76bab704-1c90-4d52-a74b-ea09262bc95b + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729472036 + behavior_settings: + - + value: { } diff --git a/web/modules/custom/default_content_config/content/node/0d6ef939-6f83-40cf-b555-5962cc409ba6.yml b/web/modules/custom/default_content_config/content/node/0d6ef939-6f83-40cf-b555-5962cc409ba6.yml new file mode 100644 index 0000000..1ec4752 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/0d6ef939-6f83-40cf-b555-5962cc409ba6.yml @@ -0,0 +1,89 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 0d6ef939-6f83-40cf-b555-5962cc409ba6 + bundle: event + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Way in the future Federal Crowdsourcing Webinar Series, Episode 3: The Opportunity Project' + created: + - + value: 1729525313 + promote: + - + value: false + sticky: + - + value: false + field_captions: + - + uri: 'https://www.captionedtext.com' + title: '' + options: { } + field_deck: + - + value: 'This field purposely left blank' + format: html + field_end_date: + - + value: '2050-11-06T15:00:00' + field_event_organizer: + - + value: 'DigitalGov University' + field_event_platform: + - + value: youtube + field_host: + - + value: Challenge.gov + field_kicker: + - + value: 'Episode 3' + field_page_weight: + - + value: 0 + field_registration_url: + - + uri: 'https://www.eventbrite.com/e/federal-crowdsourcing-webinar-series-episode-3-the-opportunity-project-registration-59460181002 captions:' + title: '' + options: { } + field_start_date: + - + value: '2050-11-06T14:00:00' + field_summary: + - + value: 'The Opportunity Project engages government, communities, and the technology industry to create digital tools that address our greatest challenges as a nation. Learn how this initiative is making government data more accessible through cross-sector collabo' + format: html + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f8fe89f1-4b73-4e50-a227-e9a2a3118ea8 + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729525817 + behavior_settings: + - + value: { } + field_youtube_id: + - + value: ZhMgfptuiUw diff --git a/web/modules/custom/default_content_config/content/node/17f221a5-a6f2-4b33-852f-00239a7cea7c.yml b/web/modules/custom/default_content_config/content/node/17f221a5-a6f2-4b33-852f-00239a7cea7c.yml new file mode 100644 index 0000000..332fad8 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/17f221a5-a6f2-4b33-852f-00239a7cea7c.yml @@ -0,0 +1,94 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 17f221a5-a6f2-4b33-852f-00239a7cea7c + bundle: event + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Way in the future Cultivating a dynamic career in UX' + created: + - + value: 1729525999 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: '
Join us as we explore what success can look like in a dynamic user experience (UX) career. Speakers from the Department of the Treasury and the Library of Congress will share their insights on how their careers in UX have continued to evolve.
In this session, you’ll learn how to:
This event is best suited for: UX professionals of all levels
{{< youtube id="m9L-vJn6OlI" title="Cultivating a dynamic career in UX" >}}
{{< youtube id="It-I7gcaaBg" title="Cultivating a dynamic career in UX" >}}
{{< youtube id="UW8v-I8JM_U" title="Cultivating a dynamic career in UX" >}}
The UX Community of Practice is a group of managers, subject matter experts, designers, developers, writers and others interested in creating efficient, effective and useful technologies. Join the UX Community.
' + format: html + summary: '' + field_captions: + - + uri: 'https://www.captionedtext.com' + title: '' + options: { } + field_deck: + - + value: 'This field purposely left blank' + format: html + field_end_date: + - + value: '2050-12-10T00:00:00' + field_event_organizer: + - + value: Digital.gov + field_event_platform: + - + value: zoom + field_host: + - + value: 'User Experience Community of Practice' + field_kicker: + - + value: 'User Experience' + field_page_weight: + - + value: 0 + field_registration_url: + - + uri: 'https://gsa.zoomgov.com/meeting/register/vJItdOmpqTgpEygCPS5a5zwjlr-_nNeqAR4' + title: '' + options: { } + field_start_date: + - + value: '2050-12-09T22:00:00' + field_summary: + - + value: 'Join us for a discussion on how to adapt your career in user experience (UX) to a quickly changing world.' + format: html + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: efec5435-b4c0-4557-8b55-49be69c2a33f + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729526457 + behavior_settings: + - + value: { } + field_youtube_id: + - + value: N/A diff --git a/web/modules/custom/default_content_config/content/node/1af1ac07-e1c2-4cc9-a974-526f4d27259d.yml b/web/modules/custom/default_content_config/content/node/1af1ac07-e1c2-4cc9-a974-526f4d27259d.yml new file mode 100644 index 0000000..bd4d14a --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/1af1ac07-e1c2-4cc9-a974-526f4d27259d.yml @@ -0,0 +1,68 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1af1ac07-e1c2-4cc9-a974-526f4d27259d + bundle: community + default_langcode: en + depends: + df325658-effa-4ff9-9e6b-abfbaf437ff9: media + c807a95f-ee73-4bd2-b616-0e56b5ff1ad1: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Communities-all fields' + created: + - + value: 1729459409 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
Pretium lacus habitasse consequat volutpat facilisis cras fringilla parturient nisi. Mauris morbi praesent velit; nostra odio lacinia. Eros consectetur ornare quisque tellus cubilia consequat. Amet massa felis fringilla mauris malesuada finibus rutrum. Eleifend hendrerit egestas nulla; vel neque sapien. Orci nascetur sollicitudin lacus dictumst semper et pellentesque. Bibendum ultrices malesuada cursus habitasse nunc; condimentum non nisi. Ipsum habitasse arcu ultricies facilisis curae laoreet. Cras senectus tempus ultrices id ante proin, suscipit ante.
Condimentum rutrum ante non conubia urna. Adipiscing et tempor pharetra erat nullam torquent vitae dictumst taciti. Nulla curabitur velit leo feugiat habitasse potenti felis? Est volutpat rutrum montes finibus ipsum aptent. Praesent metus sagittis ex mollis porttitor viverra ridiculus potenti. Eros donec nullam dis sociosqu venenatis primis? Convallis leo aliquam fames fermentum interdum. Ligula semper varius massa sociosqu risus urna?
Ac vitae tortor metus viverra netus ornare cursus tempor parturient. Volutpat per eget nisi mus non. Sociosqu potenti eleifend iaculis tellus euismod, per mollis penatibus. Dis nulla iaculis ligula fames proin in erat. Penatibus urna diam commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class, eleifend nullam cursus praesent praesent vitae. Congue litora ridiculus fames diam, eget efficitur. Mus pretium dapibus hac vivamus; vitae feugiat fringilla.
' + format: html + summary: '' + field_deck: + - + value: 'Collaborate and share resources with other communities across government who are focused on building better digital experience in government.' + format: html + field_dg_acronym: + - + value: FCN + field_dg_highlight: + - + value: true + field_dg_logo: + - + entity: df325658-effa-4ff9-9e6b-abfbaf437ff9 + field_dg_shortname: + - + value: 'Plain Language' + field_members: + - + value: 2501 + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: c807a95f-ee73-4bd2-b616-0e56b5ff1ad1 + field_subscribe_email_subject: + - + value: 'oin the Communicators Community' + field_summary: + - + value: 'Collaborate and share resources with others across government.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/202c0f8c-2f2e-487a-8eed-e55fd949b41c.yml b/web/modules/custom/default_content_config/content/node/202c0f8c-2f2e-487a-8eed-e55fd949b41c.yml new file mode 100644 index 0000000..b77120a --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/202c0f8c-2f2e-487a-8eed-e55fd949b41c.yml @@ -0,0 +1,44 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 202c0f8c-2f2e-487a-8eed-e55fd949b41c + bundle: short_post + default_langcode: en + depends: + dca37217-ad30-4e9d-8728-57c32c603503: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: '18F Accessibility Guide' + created: + - + value: 1730150056 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'A resource for developing accessible products.' + format: html + field_short_post_type: + - + value: resource + field_source: + - + entity: dca37217-ad30-4e9d-8728-57c32c603503 + field_summary: + - + value: 'A resource for developing accessible products.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/220a49de-e1ee-4314-ba79-39e0b3cf552a.yml b/web/modules/custom/default_content_config/content/node/220a49de-e1ee-4314-ba79-39e0b3cf552a.yml new file mode 100644 index 0000000..835d6a9 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/220a49de-e1ee-4314-ba79-39e0b3cf552a.yml @@ -0,0 +1,47 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 220a49de-e1ee-4314-ba79-39e0b3cf552a + bundle: authors + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Erika Brown' + created: + - + value: 1729604607 + promote: + - + value: false + sticky: + - + value: false + field_bio: + - + value: 'Erika is a Marketing and Communication Coordinator for Peace Corps Response, a short-term, high-impact Peace Corps program.' + format: html + field_email: + - + value: ebrown2@peacecorps.gov + field_first_name: + - + value: Erika + format: html + field_last_name: + - + value: Brown + format: html + field_summary: + - + value: 'The people who have contributed their stories and guidance over the years.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/2356fbee-5307-45ef-be92-c721305c8f7a.yml b/web/modules/custom/default_content_config/content/node/2356fbee-5307-45ef-be92-c721305c8f7a.yml new file mode 100644 index 0000000..6ce2c5a --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/2356fbee-5307-45ef-be92-c721305c8f7a.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2356fbee-5307-45ef-be92-c721305c8f7a + bundle: source + default_langcode: en + depends: + 6198c0ab-4772-4efd-8280-1070a4c662a8: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: usagov + created: + - + value: 1730152549 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: 6198c0ab-4772-4efd-8280-1070a4c662a8 diff --git a/web/modules/custom/default_content_config/content/node/26f2d370-453e-4fdb-8b51-3f6a932fd3e9.yml b/web/modules/custom/default_content_config/content/node/26f2d370-453e-4fdb-8b51-3f6a932fd3e9.yml new file mode 100644 index 0000000..bfce345 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/26f2d370-453e-4fdb-8b51-3f6a932fd3e9.yml @@ -0,0 +1,136 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 26f2d370-453e-4fdb-8b51-3f6a932fd3e9 + bundle: topics + default_langcode: en + depends: + 623a2982-602b-4762-a59e-9a7c30c64f36: node + 47d1784c-68a3-4a3b-a341-3e4f8d092253: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Topics-all fields' + created: + - + value: 1729472045 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
' + format: html + summary: '' + field_deck: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_featured_communities: + - + entity: 623a2982-602b-4762-a59e-9a7c30c64f36 + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2322b996-a2ea-4ec5-a5e7-947bd26aec48 + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729613493 + behavior_settings: + - + value: { } + field_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3035f2a9-682e-4d0a-b961-dd56bfad1171 + bundle: external_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729613533 + behavior_settings: + - + value: { } + field_link: + - + uri: 'https://digital.gov/2019/06/18/introducing-a-guide-paperwork-reduction-act/' + title: 'Guide to the Paperwork Reduction Act' + options: { } + field_summary: + - + value: 'The Paperwork Reduction Act (PRA) of 1995 requires that agencies obtain Office of Management and Budget (OMB) approval before requesting most types of information from the public.' + format: html + field_title: + - + value: 'Guide to the Paperwork Reduction Act' + field_featured_resources: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 330f862b-6410-4c03-8a8d-7cc54869e8d3 + bundle: external_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729616185 + behavior_settings: + - + value: { } + field_link: + - + uri: 'https://www.cdc.gov/ccindex/index.html' + title: 'The CDC Clear Communication Index' + options: { } + field_summary: + - + value: 'The CDC Clear Communication Index is a research-based tool to help you develop and assess public communication materials.' + format: html + field_legislation: + - + uri: 'internal:/resources/delivering-digital-first-public-experience' + title: 'nulla iaculis ligula fames proin in erat' + options: { } + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 47d1784c-68a3-4a3b-a341-3e4f8d092253 + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html diff --git a/web/modules/custom/default_content_config/content/node/29deb864-d663-40bd-a667-427fc01c35e2.yml b/web/modules/custom/default_content_config/content/node/29deb864-d663-40bd-a667-427fc01c35e2.yml new file mode 100644 index 0000000..634a1dd --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/29deb864-d663-40bd-a667-427fc01c35e2.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 29deb864-d663-40bd-a667-427fc01c35e2 + bundle: news + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'News-all required fields' + created: + - + value: 1729467592 + promote: + - + value: false + sticky: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/2e0f1e02-efde-48e6-9e9e-4cc1e572feec.yml b/web/modules/custom/default_content_config/content/node/2e0f1e02-efde-48e6-9e9e-4cc1e572feec.yml new file mode 100644 index 0000000..8289ac5 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/2e0f1e02-efde-48e6-9e9e-4cc1e572feec.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2e0f1e02-efde-48e6-9e9e-4cc1e572feec + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Guides + created: + - + value: 1729528023 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Everyone who works on government websites has a role to play in making federal resources accessible and inclusive.
This guide provides:
We focus on the issues most likely to impact government sites. These guidelines do not provide a comprehensive list of all possible issues. Your team will need additional resources and work to conduct manual audits to conform to the standards of Section 508, a law that ensures all web content is accessible to anybody with a disability. It aligns with the World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) Web Content Accessibility Guidelines (WCAG) 2.0, Level AA.
Choose the guide that best fits your role:
These roles are based on the roles we have at the Technology Transformation Services at GSA.
' + format: html + summary: '' + field_buttons: + - + uri: 'http://www.digital.gov' + title: 'Placeholder Button' + options: { } + field_summary: + - + value: 'A ‘quick-start’ guide for embedding accessibility and inclusive design practices into your team’s workflow' + format: html diff --git a/web/modules/custom/default_content_config/content/node/30e4505c-8011-493a-a3e8-ad35ef95c29d.yml b/web/modules/custom/default_content_config/content/node/30e4505c-8011-493a-a3e8-ad35ef95c29d.yml new file mode 100644 index 0000000..cdfa484 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/30e4505c-8011-493a-a3e8-ad35ef95c29d.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 30e4505c-8011-493a-a3e8-ad35ef95c29d + bundle: short_post + default_langcode: en + depends: + 063eb5b2-3a79-4559-a893-a149cfa2c757: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'DotGov Registry' + created: + - + value: 1730152632 + promote: + - + value: false + sticky: + - + value: false + field_short_post_type: + - + value: service + field_source: + - + entity: 063eb5b2-3a79-4559-a893-a149cfa2c757 + field_summary: + - + value: 'We make it easy to register and manage a .gov domain for US-based government organizations.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/30f086db-8fb5-40e8-ae3f-58dc8be40f74.yml b/web/modules/custom/default_content_config/content/node/30f086db-8fb5-40e8-ae3f-58dc8be40f74.yml new file mode 100644 index 0000000..591ed71 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/30f086db-8fb5-40e8-ae3f-58dc8be40f74.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 30f086db-8fb5-40e8-ae3f-58dc8be40f74 + bundle: short_post + default_langcode: en + depends: + 6931b9cf-d5cf-483b-be10-7db1f533480b: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: FedRAMP + created: + - + value: 1730152899 + promote: + - + value: false + sticky: + - + value: false + field_short_post_type: + - + value: news + field_source: + - + entity: 6931b9cf-d5cf-483b-be10-7db1f533480b + field_summary: + - + value: 'The Federal Risk and Authorization Management (FedRAMP) is a process that authorizes cloud products and services.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/31fb46ba-3d68-4c18-8819-cbbd8624d689.yml b/web/modules/custom/default_content_config/content/node/31fb46ba-3d68-4c18-8819-cbbd8624d689.yml new file mode 100644 index 0000000..b8071ab --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/31fb46ba-3d68-4c18-8819-cbbd8624d689.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 31fb46ba-3d68-4c18-8819-cbbd8624d689 + bundle: authors + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Authors-all required fields' + created: + - + value: 1729458281 + promote: + - + value: false + sticky: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/35dc2409-02d0-4bb5-b16d-4ecc340768b0.yml b/web/modules/custom/default_content_config/content/node/35dc2409-02d0-4bb5-b16d-4ecc340768b0.yml new file mode 100644 index 0000000..328029b --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/35dc2409-02d0-4bb5-b16d-4ecc340768b0.yml @@ -0,0 +1,63 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 35dc2409-02d0-4bb5-b16d-4ecc340768b0 + bundle: news + default_langcode: en + depends: + e2e80683-d456-446a-acbd-a03ff409bf1d: node + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media + 95077128-6d33-4445-a48a-4ad8ebb7d9b3: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'News-all fields' + created: + - + value: 1729467642 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
' + format: html + summary: '' + field_authors: + - + entity: e2e80683-d456-446a-acbd-a03ff409bf1d + field_deck: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_kicker: + - + value: 'nulla iaculis ligula fames proin in erat' + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_topics: + - + entity: 95077128-6d33-4445-a48a-4ad8ebb7d9b3 diff --git a/web/modules/custom/default_content_config/content/node/38cd1f1f-47ba-4e50-bc50-9cc1d8916638.yml b/web/modules/custom/default_content_config/content/node/38cd1f1f-47ba-4e50-bc50-9cc1d8916638.yml new file mode 100644 index 0000000..6146c18 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/38cd1f1f-47ba-4e50-bc50-9cc1d8916638.yml @@ -0,0 +1,87 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 38cd1f1f-47ba-4e50-bc50-9cc1d8916638 + bundle: authors + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Authors-all fields' + created: + - + value: 1729458390 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
Pretium lacus habitasse consequat volutpat facilisis cras fringilla parturient nisi. Mauris morbi praesent velit; nostra odio lacinia. Eros consectetur ornare quisque tellus cubilia consequat. Amet massa felis fringilla mauris malesuada finibus rutrum. Eleifend hendrerit egestas nulla; vel neque sapien. Orci nascetur sollicitudin lacus dictumst semper et pellentesque. Bibendum ultrices malesuada cursus habitasse nunc; condimentum non nisi. Ipsum habitasse arcu ultricies facilisis curae laoreet. Cras senectus tempus ultrices id ante proin, suscipit ante.
Condimentum rutrum ante non conubia urna. Adipiscing et tempor pharetra erat nullam torquent vitae dictumst taciti. Nulla curabitur velit leo feugiat habitasse potenti felis? Est volutpat rutrum montes finibus ipsum aptent. Praesent metus sagittis ex mollis porttitor viverra ridiculus potenti. Eros donec nullam dis sociosqu venenatis primis? Convallis leo aliquam fames fermentum interdum. Ligula semper varius massa sociosqu risus urna?
Ac vitae tortor metus viverra netus ornare cursus tempor parturient. Volutpat per eget nisi mus non. Sociosqu potenti eleifend iaculis tellus euismod, per mollis penatibus. Dis nulla iaculis ligula fames proin in erat. Penatibus urna diam commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class, eleifend nullam cursus praesent praesent vitae. Congue litora ridiculus fames diam, eget efficitur. Mus pretium dapibus hac vivamus; vitae feugiat fringilla.
' + format: html + summary: '' + field_agency_acronym: + - + value: 'HGL erat' + field_agency_full_name: + - + value: 'roin in erat. Penatibus urna di erat' + field_bio: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + format: html + field_bio_url: + - + uri: 'http://www.lorem.com' + title: '' + options: { } + field_email: + - + value: praesent@alk.gov + field_facebook: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + field_first_name: + - + value: 'penatibus fames proin in erat' + format: html + field_github: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + field_instagram: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + field_last_name: + - + value: 'efficitur mes proin in erat' + format: html + field_linkedin: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + field_location: + - + value: 'sociosqu risus urna? erat' + field_pronouns: + - + value: 'Adipiscing erat' + field_summary: + - + value: 'is nulla iaculis ligula fames proin in erat. Penatibus urna mes proin in erat diam commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem' + format: html + field_twitter: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' + field_youtube: + - + value: 's proin in erat. Penatibus urna diam mes proin in erat commodo feugiat ornare viverra. Purus massa justo ultrices nam, parturient platea tincidunt. Volutpat lorem sociosqu class,' diff --git a/web/modules/custom/default_content_config/content/node/3ab69aca-ed46-4591-86fc-b52d71f75a88.yml b/web/modules/custom/default_content_config/content/node/3ab69aca-ed46-4591-86fc-b52d71f75a88.yml new file mode 100644 index 0000000..3020df9 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/3ab69aca-ed46-4591-86fc-b52d71f75a88.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3ab69aca-ed46-4591-86fc-b52d71f75a88 + bundle: source + default_langcode: en + depends: + 8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: digitalgov + created: + - + value: 1730151657 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: 8b279abf-0fff-4a2d-8e9d-0fd3e7d6879d diff --git a/web/modules/custom/default_content_config/content/node/3b3a9406-9f34-4c96-9de2-8d0362fa8cb2.yml b/web/modules/custom/default_content_config/content/node/3b3a9406-9f34-4c96-9de2-8d0362fa8cb2.yml new file mode 100644 index 0000000..353e08a --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/3b3a9406-9f34-4c96-9de2-8d0362fa8cb2.yml @@ -0,0 +1,28 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3b3a9406-9f34-4c96-9de2-8d0362fa8cb2 + bundle: resources + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Resources-all required fields' + created: + - + value: 1729471333 + promote: + - + value: false + sticky: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/3beab2ef-6000-4ffd-bbe5-b747ff2b58e4.yml b/web/modules/custom/default_content_config/content/node/3beab2ef-6000-4ffd-bbe5-b747ff2b58e4.yml new file mode 100644 index 0000000..174c630 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/3beab2ef-6000-4ffd-bbe5-b747ff2b58e4.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3beab2ef-6000-4ffd-bbe5-b747ff2b58e4 + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Resources + created: + - + value: 1729527768 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'In the federal government, accessibility means that agencies must give disabled employees and members of the public access to information comparable to the access available to others.
Familiarize yourself with Section508,gov, and read this deeper dive on understanding accessibility in government to gain a solid foundation on accessibility in the federal space.
Accessibility must be considered throughout design, development, content creation, and maintenance of digital assets. It’s much easier to build accessibility in from the start, than to remediate something after it’s already built. Some of the most common accessibility issues we see on federal websites include:
Automated testing can find some accessibility issues, but only manual testing will catch everything, so use your agency’s standard testing tool and follow the Section 508 ICT Testing Baseline to test all code and content before publication. Using this testing baseline ensures you address access to information and communication technology (ICT) under Section 508 of the Rehabilitation Act and Section 255 of the Communications Act.
To meet our mission and serve the public, we must provide accessible resources, both physical and digital. Section508.gov offers many practical reasons for digital accessibility.
Accessibility is not only the right thing to do, it’s also the law. Under Section 508 of the Rehabilitation Act of 1973, as amended in (29 U.S.C § 794d), federal agencies must build websites and digital services that conform to the Revised 508 Standards.
Following accessibility guidelines often also leads to improvements in usability as well. This means your websites and digital services will work better, not only for those with disabilities, but for everyone. Promote accessibility at your agency by:
Federal agencies are required to provide an accessibility statement. GSA’s Government-wide IT Accessibility Program also encourages all digital product owners to include information about an organization’s commitment towards providing equal access to information.
Visit Section508.gov to learn how to develop a website accessibility statement, including why you should publish a statement, what to include, and where to publish it.
' + format: html + summary: '' + field_deck: + - + value: 'Understand how to approach accessibility for all' + format: html + field_summary: + - + value: 'An overview of how to design and deliver accessible digital products and services in the federal government' + format: html diff --git a/web/modules/custom/default_content_config/content/node/45a32394-3a9a-4481-a9bf-4701e39138ea.yml b/web/modules/custom/default_content_config/content/node/45a32394-3a9a-4481-a9bf-4701e39138ea.yml new file mode 100644 index 0000000..b7bfafb --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/45a32394-3a9a-4481-a9bf-4701e39138ea.yml @@ -0,0 +1,59 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 45a32394-3a9a-4481-a9bf-4701e39138ea + bundle: guides + default_langcode: en + depends: + c2eb37c0-02a5-4a36-90bc-a7039449b61b: media + 1e945b0b-bcf5-4df7-9105-6c222eb70c13: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'GUIDE-all fields' + created: + - + value: 1729463587 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Everyone who works on government websites has a role to play in making federal resources accessible and inclusive.
This guide provides:
We focus on the issues most likely to impact government sites. These guidelines do not provide a comprehensive list of all possible issues. Your team will need additional resources and work to conduct manual audits to conform to the standards of Section 508, a law that ensures all web content is accessible to anybody with a disability. It aligns with the World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) Web Content Accessibility Guidelines (WCAG) 2.0, Level AA.
Choose the guide that best fits your role:
These roles are based on the roles we have at the Technology Transformation Services at GSA.
' + format: html + summary: '' + field_deck: + - + value: 'A ‘quick-start’ guide for embedding accessibility and inclusive design practices into your team’s workflow' + format: html + field_featured_image: + - + entity: c2eb37c0-02a5-4a36-90bc-a7039449b61b + field_guide_weight: + - + value: 5 + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 1e945b0b-bcf5-4df7-9105-6c222eb70c13 + field_summary: + - + value: 'A ‘quick-start’ guide for embedding accessibility and inclusive design practices into your team’s workflow' + format: html + field_summary_box: + - + value: true diff --git a/web/modules/custom/default_content_config/content/node/46c1aa2a-c573-4c7d-b152-630a422aa254.yml b/web/modules/custom/default_content_config/content/node/46c1aa2a-c573-4c7d-b152-630a422aa254.yml new file mode 100644 index 0000000..2fc3837 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/46c1aa2a-c573-4c7d-b152-630a422aa254.yml @@ -0,0 +1,31 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 46c1aa2a-c573-4c7d-b152-630a422aa254 + bundle: community + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Communities-all required fields' + created: + - + value: 1729459305 + promote: + - + value: false + sticky: + - + value: false + field_dg_highlight: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/5422ab63-c9a2-48cd-9816-a1892a687169.yml b/web/modules/custom/default_content_config/content/node/5422ab63-c9a2-48cd-9816-a1892a687169.yml new file mode 100644 index 0000000..70364fd --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/5422ab63-c9a2-48cd-9816-a1892a687169.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 5422ab63-c9a2-48cd-9816-a1892a687169 + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Job Board' + created: + - + value: 1729528301 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'body text
' + format: html + summary: '' + field_buttons: + - + uri: 'http://www.digital.gov' + title: 'Placeholder Button' + options: { } + field_summary: + - + value: n/a + format: html diff --git a/web/modules/custom/default_content_config/content/node/56b9851c-8b3e-4531-8fe4-985bace94001.yml b/web/modules/custom/default_content_config/content/node/56b9851c-8b3e-4531-8fe4-985bace94001.yml new file mode 100644 index 0000000..ce44f89 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/56b9851c-8b3e-4531-8fe4-985bace94001.yml @@ -0,0 +1,43 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 56b9851c-8b3e-4531-8fe4-985bace94001 + bundle: services + default_langcode: en + depends: + 80caaa35-a22b-43ae-a72c-9a714c333a06: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Analytics.USA.gov + created: + - + value: 1729635977 + promote: + - + value: false + sticky: + - + value: false + field_contact: + - + value: dap@gsa.gov + field_page_weight: + - + value: 2 + field_summary: + - + value: 'A window into how people are interacting with the government online. Powered by the Digital Analytics Program (DAP)' + format: html + field_topics: + - + entity: 80caaa35-a22b-43ae-a72c-9a714c333a06 diff --git a/web/modules/custom/default_content_config/content/node/58b5051e-356e-4ace-be42-ca090259d6ab.yml b/web/modules/custom/default_content_config/content/node/58b5051e-356e-4ace-be42-ca090259d6ab.yml new file mode 100644 index 0000000..c70463b --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/58b5051e-356e-4ace-be42-ca090259d6ab.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 58b5051e-356e-4ace-be42-ca090259d6ab + bundle: topics + default_langcode: en + depends: + 623a2982-602b-4762-a59e-9a7c30c64f36: node + a842883f-d724-4e91-a1c7-511707fc59b5: node + cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3: node + 47d1784c-68a3-4a3b-a341-3e4f8d092253: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Privacy + created: + - + value: 1729617378 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'As agencies carry out their diverse missions, they must also respect and protect personally identifiable information (PII)' + format: html + field_featured_communities: + - + entity: 623a2982-602b-4762-a59e-9a7c30c64f36 + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 62f634e2-c9d0-4824-ab99-949d787c673c + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729617573 + behavior_settings: + - + value: { } + field_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 678ad8f1-eb73-4957-aa0a-ac41caeabcbc + bundle: internal_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729617946 + behavior_settings: + - + value: { } + field_content: + - + entity: a842883f-d724-4e91-a1c7-511707fc59b5 + field_title: + - + value: 'Guidance for Implementing the Privacy Provisions of the E–Government Act of 2002 (M-03–22)' + field_featured_resources: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0f307e01-52fd-4940-b907-e34562f33571 + bundle: internal_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729617779 + behavior_settings: + - + value: { } + field_content: + - + entity: cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3 + field_legislation: + - + uri: 'https://www.fpc.gov/resources/omb/' + title: 'Privacy Act of 1974 & various OMB memos' + options: { } + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 47d1784c-68a3-4a3b-a341-3e4f8d092253 + field_summary: + - + value: 'For the public to have trust in government institutions, they need to know that their personal information is secure, and will be used only for legitimate purposes. Privacy violations can put people at risk for identity theft, financial fraud, discriminat' + format: html diff --git a/web/modules/custom/default_content_config/content/node/623a2982-602b-4762-a59e-9a7c30c64f36.yml b/web/modules/custom/default_content_config/content/node/623a2982-602b-4762-a59e-9a7c30c64f36.yml new file mode 100644 index 0000000..b8dfe3f --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/623a2982-602b-4762-a59e-9a7c30c64f36.yml @@ -0,0 +1,64 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 623a2982-602b-4762-a59e-9a7c30c64f36 + bundle: community + default_langcode: en + depends: + df325658-effa-4ff9-9e6b-abfbaf437ff9: media + f53fc4bd-54e8-49b3-b419-73525681c8a1: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Web Managers' + created: + - + value: 1729615048 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'We are a group for those who create, manage, and contribute to government websites and digital services. We are working to create a trusted, seamless online experience for all. You do not need to be a “manager” to be a part of this community; we are all managing different aspects of the digital experience and all have something to contribute — and something to learn — from one another.
Together, everyone achieves more. We recognize the expert in each of us. Our primary purpose is to collaborate and share ideas, challenges, lessons learned, and best practices in managing government websites and digital services—from all levels of skills and knowledge.
We support efforts to implement the 21st Century Integrated Digital Experience Act (21st Century IDEA) and other requirements for government websites and digital services.
We meet several times a year and maintain an active LISTSERV. We also work with other communities of practice and the Federal Web Council to publish case studies, blog posts, and other resources on Digital.gov.
We want to help our community find the answers to questions, to consider questions they perhaps haven’t thought to ask, and to learn from this diverse community.
We held our first community meeting in October 2000. The web content managers group was started as a way for content managers, not techies, to get together to discuss web content and management issues facing the federal government. We have evolved over the past 20 years to include everyone who has a role in building websites and digital services.
Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
' + format: html + summary: '' + field_deck: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_page_weight: + - + value: 1 + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html diff --git a/web/modules/custom/default_content_config/content/node/740e017d-a723-4dda-9494-68f1a266db20.yml b/web/modules/custom/default_content_config/content/node/740e017d-a723-4dda-9494-68f1a266db20.yml new file mode 100644 index 0000000..788d439 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/740e017d-a723-4dda-9494-68f1a266db20.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 740e017d-a723-4dda-9494-68f1a266db20 + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Tools + created: + - + value: 1729528150 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Body Field
' + format: html + summary: '' + field_buttons: + - + uri: 'http://www.digital.gov' + title: 'Placeholder Button' + options: { } + field_summary: + - + value: 'Explore services that are user-centered, open-source, and built by government for government.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/75eea0f2-8628-4f99-9181-18c9d5e776b6.yml b/web/modules/custom/default_content_config/content/node/75eea0f2-8628-4f99-9181-18c9d5e776b6.yml new file mode 100644 index 0000000..9c249e4 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/75eea0f2-8628-4f99-9181-18c9d5e776b6.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 75eea0f2-8628-4f99-9181-18c9d5e776b6 + bundle: source + default_langcode: en + depends: + d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: doj + created: + - + value: 1730152834 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: d512bbbc-1974-4b67-91ed-6ab3ac0b1b3d diff --git a/web/modules/custom/default_content_config/content/node/7ea91000-46a3-4115-a8db-e7deacb4a0f6.yml b/web/modules/custom/default_content_config/content/node/7ea91000-46a3-4115-a8db-e7deacb4a0f6.yml new file mode 100644 index 0000000..3dd811f --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/7ea91000-46a3-4115-a8db-e7deacb4a0f6.yml @@ -0,0 +1,119 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 7ea91000-46a3-4115-a8db-e7deacb4a0f6 + bundle: event + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'The Intersection Between Plain Language and 508 Compliance' + created: + - + value: 1729712066 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'At its core, plain language is about making documents accessible to readers. In this month’s meeting we will discuss how plain language intersects with 508 compliance requirements to make federal electronic documents and technology accessible to people with disabilities. We invite 508 program managers and plain language experts to join us for an informative discussion. Topics include:
This meeting is hosted by the Plain Language Action and Information Network (PLAIN), a community of federal employees dedicated to the idea that citizens deserve clear communications from the government.
' + format: html + summary: '' + field_captions: + - + uri: 'https://www.captionedtext.com/client/event.aspx?EventID=4380373&CustomerID=321' + title: '' + options: { } + field_end_date: + - + value: '2020-04-15T19:00:00' + field_event_organizer: + - + value: Digital.gov + field_event_platform: + - + value: adobe_connect + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_host: + - + value: 'Plain Community of Practice' + field_kicker: + - + value: Accessibility + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_registration_url: + - + uri: 'https://www.eventbrite.com/e/100304240684' + title: '' + options: { } + field_start_date: + - + value: '2020-04-15T18:00:00' + field_summary: + - + value: 'We’ll discuss how plain language intersects with 508 compliance requirements to make federal electronic documents and information technology accessible to people with disabilities.' + format: html + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ce0b218d-009e-497e-ad18-e1d932454544 + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729712443 + behavior_settings: + - + value: { } + field_venue_address: + - + value: '1800 F Street NW' + field_venue_city: + - + value: Washington + field_venue_country: + - + value: 'United States' + field_venue_name: + - + value: 'General Services Administration' + field_venue_room: + - + value: '1200' + field_venue_state: + - + value: DC + field_venue_zip: + - + value: '20006' + field_youtube_id: + - + value: tFkN0s7UWcE diff --git a/web/modules/custom/default_content_config/content/node/80caaa35-a22b-43ae-a72c-9a714c333a06.yml b/web/modules/custom/default_content_config/content/node/80caaa35-a22b-43ae-a72c-9a714c333a06.yml new file mode 100644 index 0000000..8cacd78 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/80caaa35-a22b-43ae-a72c-9a714c333a06.yml @@ -0,0 +1,98 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 80caaa35-a22b-43ae-a72c-9a714c333a06 + bundle: topics + default_langcode: en + depends: + bd7fedff-9767-49b3-8a71-8bab51265a86: node + 3c8c1a7b-5b5b-4196-b435-1fa57ff0230b: node + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Analytics + created: + - + value: 1729636108 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'easure and plan your site performance with analytics best practices and tools' + format: html + field_featured_communities: + - + entity: bd7fedff-9767-49b3-8a71-8bab51265a86 + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: acb3f905-b8cd-40ed-b741-6cad245a9f38 + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729636289 + behavior_settings: + - + value: { } + field_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4ced8e17-8b6b-4b67-9b11-6f2fd606134a + bundle: internal_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729705485 + behavior_settings: + - + value: { } + field_content: + - + entity: 3c8c1a7b-5b5b-4196-b435-1fa57ff0230b + field_title: + - + value: 'An introduction to accessibility' + field_legislation: + - + uri: 'https://www.whitehouse.gov/wp-content/uploads/legacy_drupal_files/omb/memoranda/2010/m10-23.pdf' + title: 'M-10-22, Guidance for Online Use of Web Measurement and Customization Technologies (PDF, 130 KB, 9 pages, June 2010)' + options: { } + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'Web analytics provide valuable insights into how users interact with a website. Use the data gained from web analytics to identify areas for improvement and make data-driven decisions. This can lead to a more user-friendly and engaging website, which can ' + format: html diff --git a/web/modules/custom/default_content_config/content/node/88a30df6-80b5-4887-bdb7-6ffb12259ac9.yml b/web/modules/custom/default_content_config/content/node/88a30df6-80b5-4887-bdb7-6ffb12259ac9.yml new file mode 100644 index 0000000..616f302 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/88a30df6-80b5-4887-bdb7-6ffb12259ac9.yml @@ -0,0 +1,44 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 88a30df6-80b5-4887-bdb7-6ffb12259ac9 + bundle: short_post + default_langcode: en + depends: + 75eea0f2-8628-4f99-9181-18c9d5e776b6: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Case study: Removing barriers to applying for a presidential pardon' + created: + - + value: 1730152729 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'At the Department of Justice, Access DOJ and the Office of the Pardon Attorney (PARDON) partnered to simplify and streamline the presidential pardon application process. By conducting usability testing and gathering feedback, they identified key issues wi' + format: html + field_short_post_type: + - + value: news + field_source: + - + entity: 75eea0f2-8628-4f99-9181-18c9d5e776b6 + field_summary: + - + value: 'At the Department of Justice, Access DOJ and the Office of the Pardon Attorney (PARDON) partnered to simplify and streamline the presidential pardon application process. By conducting usability testing and gathering feedback, they identified key issues wi' + format: html diff --git a/web/modules/custom/default_content_config/content/node/8ba0f0bd-d728-4df0-bb05-28766df7a1c0.yml b/web/modules/custom/default_content_config/content/node/8ba0f0bd-d728-4df0-bb05-28766df7a1c0.yml new file mode 100644 index 0000000..546307c --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/8ba0f0bd-d728-4df0-bb05-28766df7a1c0.yml @@ -0,0 +1,44 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8ba0f0bd-d728-4df0-bb05-28766df7a1c0 + bundle: short_post + default_langcode: en + depends: + 3ab69aca-ed46-4591-86fc-b52d71f75a88: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Foundations of Agile, Part I' + created: + - + value: 1730151730 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: "18F's Alan Atlas and Alan Brouilette cover the fundamentals of Agile." + format: html + field_short_post_type: + - + value: resource + field_source: + - + entity: 3ab69aca-ed46-4591-86fc-b52d71f75a88 + field_summary: + - + value: "18F's Alan Atlas and Alan Brouilette cover the fundamentals of Agile." + format: html diff --git a/web/modules/custom/default_content_config/content/node/8f1dda66-7cf9-43ca-a086-ea1f8b19ef6d.yml b/web/modules/custom/default_content_config/content/node/8f1dda66-7cf9-43ca-a086-ea1f8b19ef6d.yml new file mode 100644 index 0000000..a3926a3 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/8f1dda66-7cf9-43ca-a086-ea1f8b19ef6d.yml @@ -0,0 +1,49 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8f1dda66-7cf9-43ca-a086-ea1f8b19ef6d + bundle: basic_page + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Contribute to Digital.gov' + created: + - + value: 1729713568 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'While we welcome event and content contributions from community members across all levels of experience, we know that can feel like a big leap, especially for folks who are new to the federal government or Digital.gov. So, we offer other ways to contribute.
Open Opportunities: We occasionally post short, recurring tasks on the Open Opportunities platform. Each task takes about 8 hours. Browse all Digital.gov tasks to find one that is a good fit for you.
Community mailing lists: Share your thoughts and ideas on the community LISTSERV. Tell us about your agency and team and some of your noteworthy projects. Share best practices and resources. Ask questions about new research, industry trends, and other topics. All community members can post messages on the LISTSERV. And be sure to join several Digital.gov communities of practice. Each community has its own culture, and you’ll learn something new by joining more than one community.
Feedback: We want to hear from you. We use feedback from community members and the public to continually improve Digital.gov. Complete our post-event, website, and community surveys, or write to us at digitalgov@gsa.gov to share what’s on your mind.
' + format: html + summary: '' + field_deck: + - + value: "Have a case study to share? Did your team recently launch something new? Here is what we're looking for." + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_page_weight: + - + value: 1 + field_summary: + - + value: "Have a case study to share? Did your team recently launch something new? Here is what we're looking for." + format: html diff --git a/web/modules/custom/default_content_config/content/node/8f5405bb-957a-4842-b1fb-6276ef95a165.yml b/web/modules/custom/default_content_config/content/node/8f5405bb-957a-4842-b1fb-6276ef95a165.yml new file mode 100644 index 0000000..d46a5b0 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/8f5405bb-957a-4842-b1fb-6276ef95a165.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8f5405bb-957a-4842-b1fb-6276ef95a165 + bundle: resources + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Plain Language Web Writing Tips' + created: + - + value: 1729619790 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'On the web, people are in a hurry. They skim and scan, looking for fast answers to their questions, so it’s important to get to the point—quickly! Help your readers complete their tasks with these Plain Language writing tips:
Audience
Write for your reader. Don’t write for the experts, the lawyers, or your management, unless they are your intended audience.
Length
Less is more! Be concise. Eliminate ALL unnecessary words. Challenge every word = do you need it?
Tone
Use conversational pronouns (you, us, our, we). Write as if you were talking to a colleague or friend. Use contractions (we’re instead of we are).
Voice
Use active voice with strong verbs. Say “We mailed your form on May 1” instead of “Your form was mailed by us on May 1.”
Word Choice
Use the same words your readers use when they search for your info on the Web. Avoid acronyms and jargon.
Simplify
Use simple, descriptive section headings; short paragraphs; and ordinary, familiar words.
Links
Never use “click here”—link language should describe what your reader will get if they click that link. Include key words to help search engines.
Organization
Put the most important information first, followed by the details.
Improve Tasks
Organize content around your customers’ tasks, not your organization. Highlight action items (step 1, step 2, etc.).
Scannability
Separate content into small chunks. Use lots of white space for easy scanning. In general, write no more than 5-7 lines per paragraph. Use lists and bullets, they are easy to scan.
Separate Topics
Present each topic separately. Keep the information on each page to three (or fewer) levels.
Context
Don’t assume your readers already know the subject or have read related pages. Each page should stand on its own. Put everything in context.
Test and Evaluate
Test Web pages with actual customers so you can be sure real people can understand what you write.
Train
Encourage all your colleagues (lawyers, accountants, researchers, etc.) to use plain language—because all content is potentially Web content.
' + format: html + summary: '' + field_summary: + - + value: 'Help your readers complete their tasks with these Plain Language writing tips.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/91b1798f-4dec-49d6-bfee-38ed0a4f5e49.yml b/web/modules/custom/default_content_config/content/node/91b1798f-4dec-49d6-bfee-38ed0a4f5e49.yml new file mode 100644 index 0000000..b37d922 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/91b1798f-4dec-49d6-bfee-38ed0a4f5e49.yml @@ -0,0 +1,58 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 91b1798f-4dec-49d6-bfee-38ed0a4f5e49 + bundle: guides + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Web analytics playbook' + created: + - + value: 1729713796 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Federal websites vary greatly in content and purpose, but they all share a common objective: to deliver information or services to the public in an efficient, easy, and accessible way.
Web analytics tools play an integral role in pursuit of that goal. However, if the tool is implemented improperly or the data it collects are analyzed incorrectly, it can derail delivering information or services to the public.
Use these plays to help strategize how your team can most effectively use web analytics for your website and target audience.
1. [Create a foundation for your strategy]({{< ref "create-a-foundation-for-your-strategy" >}})
2. [Commit to action]({{< ref "commit-to-action" >}})
3. [Implement wisely]({{< ref "implement-wisely" >}})
4. [Configure your tool’s settings carefully]({{< ref "configure-your-tools-settings-carefully" >}})
5. [Know what you’re looking for]({{< ref "know-what-youre-looking-for" >}})
6. [Democratize the data]({{< ref "democratize-the-data" >}})
7. [Invest in training and support]({{< ref "invest-in-training-and-support" >}})
8. [Do it continuously]({{< ref "do-it-continuously" >}})
' + format: html + summary: '' + field_deck: + - + value: 'Use web analytics to reach your strategic website goals' + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_guide_weight: + - + value: 1 + field_page_weight: + - + value: 0 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'This guide provides actionable strategies for effectively using web analytics to improve federal websites and digital services.' + format: html + field_summary_box: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/95077128-6d33-4445-a48a-4ad8ebb7d9b3.yml b/web/modules/custom/default_content_config/content/node/95077128-6d33-4445-a48a-4ad8ebb7d9b3.yml new file mode 100644 index 0000000..5150b18 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/95077128-6d33-4445-a48a-4ad8ebb7d9b3.yml @@ -0,0 +1,72 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 95077128-6d33-4445-a48a-4ad8ebb7d9b3 + bundle: topics + default_langcode: en + depends: + 623a2982-602b-4762-a59e-9a7c30c64f36: node + 47d1784c-68a3-4a3b-a341-3e4f8d092253: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Cloud and infrastructure' + created: + - + value: 1729706129 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'Digital infrastructure means hardware and software. It Includes physical and virtual “cloud” storage spaces.' + format: html + field_featured_communities: + - + entity: 623a2982-602b-4762-a59e-9a7c30c64f36 + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b3cc1ee0-0bd2-42f9-8581-1f8713953303 + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729707255 + behavior_settings: + - + value: { } + field_legislation: + - + uri: 'https://www.cio.gov/policies-and-priorities/circular-a-130/' + title: 'Circular No. A-130 - Managing Information as a Strategic Resource' + options: { } + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 47d1784c-68a3-4a3b-a341-3e4f8d092253 + field_summary: + - + value: 'Cloud and infrastructure' + format: html diff --git a/web/modules/custom/default_content_config/content/node/96c5f0a4-57d7-42d6-a297-7f9996e322ee.yml b/web/modules/custom/default_content_config/content/node/96c5f0a4-57d7-42d6-a297-7f9996e322ee.yml new file mode 100644 index 0000000..77c89c2 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/96c5f0a4-57d7-42d6-a297-7f9996e322ee.yml @@ -0,0 +1,43 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 96c5f0a4-57d7-42d6-a297-7f9996e322ee + bundle: services + default_langcode: en + depends: + 95077128-6d33-4445-a48a-4ad8ebb7d9b3: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Centers of Excellence' + created: + - + value: 1729706079 + promote: + - + value: false + sticky: + - + value: false + field_contact: + - + value: connectcoe@gsa.gov + field_page_weight: + - + value: 1 + field_summary: + - + value: 'We implement IT modernization at federal agencies by leveraging private sector innovation and government services while centralizing best practices and expertise for holistic transformation.' + format: html + field_topics: + - + entity: 95077128-6d33-4445-a48a-4ad8ebb7d9b3 diff --git a/web/modules/custom/default_content_config/content/node/986de625-5015-47c0-9ccc-273f985b69b8.yml b/web/modules/custom/default_content_config/content/node/986de625-5015-47c0-9ccc-273f985b69b8.yml new file mode 100644 index 0000000..e7bcdb6 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/986de625-5015-47c0-9ccc-273f985b69b8.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 986de625-5015-47c0-9ccc-273f985b69b8 + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Blogs + created: + - + value: 1729526618 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'This is placeholder text in the body field
' + format: html + summary: '' + field_buttons: + - + uri: 'http://www.digital.gov' + title: 'Placeholder Button' + options: { } + field_summary: + - + value: 'Innovative work, news, and ideas from people and teams in government' + format: html diff --git a/web/modules/custom/default_content_config/content/node/98bfb2c1-0e1a-444b-9fb8-1f6dbb5dfa6d.yml b/web/modules/custom/default_content_config/content/node/98bfb2c1-0e1a-444b-9fb8-1f6dbb5dfa6d.yml new file mode 100644 index 0000000..47ba906 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/98bfb2c1-0e1a-444b-9fb8-1f6dbb5dfa6d.yml @@ -0,0 +1,48 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 98bfb2c1-0e1a-444b-9fb8-1f6dbb5dfa6d + bundle: services + default_langcode: en + depends: + ad7aa7a5-33cf-400e-93cf-11820e467111: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Services-all fields' + created: + - + value: 1729471544 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Imperdiet erat elit varius, suscipit parturient habitasse. Leo consectetur lectus torquent adipiscing sollicitudin etiam nulla sit suspendisse. Sagittis sodales vitae lacus tincidunt; viverra ad. Rutrum hac sollicitudin ridiculus fermentum fames nibh quisque praesent dapibus. Vel consectetur sem pellentesque ante iaculis fames nulla consectetur. Sed litora non dignissim justo pellentesque. Mauris justo habitant ligula mi eget urna auctor magna.
Elementum sed ligula, in curae viverra consectetur maecenas. Tristique potenti quisque convallis augue mus per. Massa vivamus blandit sit massa consectetur dictum sem. Mauris tincidunt maecenas metus vehicula pharetra; phasellus felis vivamus. Metus erat interdum netus; sed metus massa. Platea in convallis semper ad consectetur ante rhoncus tortor sodales. Congue ultricies et per sodales, nam sem ex. Erat risus hendrerit bibendum dignissim, sollicitudin augue feugiat fames. Adipiscing metus aliquam est et suspendisse et ornare montes. Risus augue bibendum, senectus a dapibus placerat ut per.
' + format: html + summary: '' + field_contact: + - + value: ornare@ornare.gov + field_page_weight: + - + value: 2 + field_summary: + - + value: 'Lorem ipsum odor amet, consectetuer adipi' + format: html + field_topics: + - + entity: ad7aa7a5-33cf-400e-93cf-11820e467111 diff --git a/web/modules/custom/default_content_config/content/node/a6224150-45d6-40ba-aa33-6a3e61a6830c.yml b/web/modules/custom/default_content_config/content/node/a6224150-45d6-40ba-aa33-6a3e61a6830c.yml new file mode 100644 index 0000000..a7cf0ca --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/a6224150-45d6-40ba-aa33-6a3e61a6830c.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a6224150-45d6-40ba-aa33-6a3e61a6830c + bundle: source + default_langcode: en + depends: + 37560ea7-308c-42dc-b77b-0a5d982dbedb: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: coe + created: + - + value: 1730152434 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: 37560ea7-308c-42dc-b77b-0a5d982dbedb diff --git a/web/modules/custom/default_content_config/content/node/a842883f-d724-4e91-a1c7-511707fc59b5.yml b/web/modules/custom/default_content_config/content/node/a842883f-d724-4e91-a1c7-511707fc59b5.yml new file mode 100644 index 0000000..56ba5fb --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/a842883f-d724-4e91-a1c7-511707fc59b5.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a842883f-d724-4e91-a1c7-511707fc59b5 + bundle: resources + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Guidance for Implementing the Privacy Provisions of the E–Government Act of 2002 (M-03–22)' + created: + - + value: 1729617981 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: '
This guidance provides information to agencies on implementing the privacy provisions of the E-Government Act of 2002.
It addresses privacy protections when Americans interact with their government. The guidance directs agencies to conduct reviews of how information about individuals is handled within their agency when they use information technology (IT) to collect new information, or when agencies develop or buy new IT systems to handle collections of personally identifiable information. Agencies are also directed to describe how the government handles information that individuals provide electronically, so that the American public has assurances that personal information is protected.
See more [DigitalGov Resources]({{< ref "/resources" >}})
' + format: html + summary: '' + field_summary: + - + value: 'This guidance provides information to agencies on implementing the privacy provisions of the E-Government Act of 2002. It addresses privacy protections when Americans interact with their government.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/ad7aa7a5-33cf-400e-93cf-11820e467111.yml b/web/modules/custom/default_content_config/content/node/ad7aa7a5-33cf-400e-93cf-11820e467111.yml new file mode 100644 index 0000000..b8a545e --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/ad7aa7a5-33cf-400e-93cf-11820e467111.yml @@ -0,0 +1,122 @@ +_meta: + version: '1.0' + entity_type: node + uuid: ad7aa7a5-33cf-400e-93cf-11820e467111 + bundle: topics + default_langcode: en + depends: + 623a2982-602b-4762-a59e-9a7c30c64f36: node + 47d1784c-68a3-4a3b-a341-3e4f8d092253: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Accessibility + created: + - + value: 1729614716 + promote: + - + value: false + sticky: + - + value: false + field_deck: + - + value: 'The design of products, devices, services, or environments for people with disabilities' + format: html + field_featured_communities: + - + entity: 623a2982-602b-4762-a59e-9a7c30c64f36 + field_featured_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7d157641-97d7-4af9-a130-80f9545ce1ea + bundle: featured_links + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729614815 + behavior_settings: + - + value: { } + field_links: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7f1f0a6f-e13d-47d1-bb76-90712a7237d8 + bundle: external_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729617125 + behavior_settings: + - + value: { } + field_link: + - + uri: 'https://www.section508.gov/' + title: 508.gov + options: { } + field_summary: + - + value: 'To support people working to enhance access to federal information technology (IT), we identify and promote best practices for compliance with Section 508 law, and conformance to the Revised 508 Standards.' + format: html + field_title: + - + value: 'https://www.section508.gov/' + field_featured_resources: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1810f546-30ca-402e-b25d-abc55073c91b + bundle: internal_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729616974 + behavior_settings: + - + value: { } + field_legislation: + - + uri: 'https://www.section508.gov/manage/laws-and-policies/' + title: 'Section 508 of the Rehabilitation Act of 1973' + options: { } + field_page_weight: + - + value: 2 + field_primary_image: + - + entity: 47d1784c-68a3-4a3b-a341-3e4f8d092253 + field_summary: + - + value: "Accessibility isn't just the right thing to do; it’s the law. The guidance, resources, and community you find here will help you deliver accessible digital products and services in the federal government." + format: html diff --git a/web/modules/custom/default_content_config/content/node/b5f41387-ec98-4f72-964e-0a5c26612d15.yml b/web/modules/custom/default_content_config/content/node/b5f41387-ec98-4f72-964e-0a5c26612d15.yml new file mode 100644 index 0000000..c236c38 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/b5f41387-ec98-4f72-964e-0a5c26612d15.yml @@ -0,0 +1,52 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b5f41387-ec98-4f72-964e-0a5c26612d15 + bundle: news + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: "Security is Everyone's Responsibility: Delivering Secure, Usable Login for Government" + created: + - + value: 1729711007 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Creating easy-to-use online products and services is not something you read much about when referring to the government. In this blog post, I''ll share how the cross-functional teams on Login.gov designs and delivers human-centered experience to create a modern, secure, and impactful login service for the public.
{{< img-right src="login-lock-graphic" >}}
Trusted by government agencies, Login.gov is a shared service used by the public. Our program''s mission is to simplify secure access to online government services for the public, and reduce costs for agencies and taxpayers. With one Login.gov account, the sign-in process is streamlined; the need to remember different passwords for each agency is eliminated.
{{< img-right src="login-vault-door" >}}
To create the best product possible, our subject matter experts (SMEs) on the team take our security experience of the product seriously.
We do this by keeping a balance of privacy, usability, and trust. Our cross-disciplinary teams of engineering, product management and user experience (UX) work to ensure we deliver an easy to use service that is simple for agencies to integrate into their systems.
We are also unique in that we are built to be for the government, but we are also the government ourselves. Our SMEs in authentication and identity verification management understand how the government works so that we can create products that best suit our partners—and ultimately the public''s—needs.
When it comes to our security experience, our encryption method works like a safe deposit box in a bank vault. Only the user has the key; only the user can open the box to reveal the contents.
Login.gov has varying levels of service that we provide to our agency partners. The two that I’ll be referring to here are our authentication and identity verification services.
Our authentication service is to provide strong, modern authentication methods to the entire U.S. public. We do this by using modern security techniques, plain language, and human-centered design.
Identity verification refers to our online identity-proofing platform that allows our partner agencies to verify that their users are who they say they are, wherever they are; whether it’s from the convenience of their own home, or on the go with a mobile device.
Login.gov has actively been incorporating human-centered design into our delivery process to include continuous discovery and create impact. Here are a few specific ways in which the team has collaborated to create an optimal security user experience for the public.
Usability testing is a priority when trying to obtain information directly from the public and get feedback about their experiences with our product. We use online tooling to test our concepts directly with users and quickly iterate on our designs. Within 30 minutes (or sometimes less!) we are able to get the public’s direct feedback on our new concepts and ideas. This helps to ensure we are making the best product possible for the public.
We’ve also incorporated remote human-centered design methods to perform cross disciplinary ideation sessions for convergent and divergent thinking. Bringing together engineers, product managers and user experience subject matter experts to ideate has been beneficial to creating new, enriching concepts for Login.gov products and services. It has also been a great way for our team to bond and get to know how we all think and work.
We ensure that all members of the Login.gov team are aware of user experience methods that are happening around the program (e.g., user interviews) and invite them to join. This can be done by joining various meetings (e.g., engineering weekly) for feedback on concepts and watching user interviews together over a conference call.
Now that you know a bit more about what Login.gov is and how we work, I’d like to outline a case study of how we put our methods into practice to increase our proofing rates for our identity verification service.
Identity verification, also referred to as Identity Assurance Level 2 NIST standard (also known as IAL2), has been a big focus area for the past year. We’ve been actively working on how to better understand when and where to improve our flows so that users are securely verified with as little burden to them as possible.
After creating these flows, we targeted the image capture portion of the flow and how we could better enhance the experience to better meet the public’s needs. There were a few updates to the flow that we made, based on feedback we received from our study:
We also heard from users that certain screens were unhelpful or unuseful in the proofing process. For example, this screen appeared when the user had only made it through two of the steps BUT had not completed the proofing process.
{{< img src="logingov-screenshot" >}}
We implemented the recommendations that were based off of our usability testing and saw our actual* proofing rates increase from 51% to 60% within two weeks. This was a remarkable outcome for us to see after making a few incremental changes to improving our service, based on our teams findings and recommendations.
Within 30 days of implementation, our average actual success rate increased to 74%, and with a daily high as high as much 84%. These numbers will continue to climb by using continuous discovery and human-centered design techniques. As you can see, not only does this improve the public’s experience of Login.gov, but also has serious business impact - making our product more attractive to partners, and reducing our costs to proof users.
* Note: Actual is the percent of successfully proofed users who actually start the proofing process and complete all steps.
In fiscal year 2021, we are expanding upon our work and continuing to build the best security user experience for the public. By taking a human-centered approach to our metrics, product iterations, and service design, we will continue to build an even better Login.gov for everyone.
You can learn more by visiting our Login.gov website.
Is your agency looking for a login solution for your online products and services? Visit partners.login.gov.
## About the Author
{{< author-bio "julia-solorzano" >}}
Do you have a .gov or .mil email address and are looking to connect with other feds working on digital products and services? Join our Communities of Practice, such as User Experience, DevOps, Web Content Managers Forum, IT Accessibility and Section 508, MobileGov, and more! Explore Digital.gov’s Resources and Tools and Services for additional information and help.
' + format: html + summary: '' + field_deck: + - + value: 'How login.gov incorporated human centered design and continuous discovery into their product development process to improve the user experience.' + format: html + field_kicker: + - + value: Privacy + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'How login.gov incorporated human centered design and continuous discovery into their product development process to improve the user experience.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/b759a923-5d7c-438a-abb8-fa90e1750af9.yml b/web/modules/custom/default_content_config/content/node/b759a923-5d7c-438a-abb8-fa90e1750af9.yml new file mode 100644 index 0000000..eaaebf1 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/b759a923-5d7c-438a-abb8-fa90e1750af9.yml @@ -0,0 +1,49 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b759a923-5d7c-438a-abb8-fa90e1750af9 + bundle: basic_page + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Contact Us' + created: + - + value: 1729713282 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Digital.gov is made up of a cross-functional team of writers, editors, strategists, technologists, and designers who all work at the Technology Transformation Services (TTS) at the General Services Administration (GSA).
:envelope: Questions or feedback? Send an email to us at digitalgov@gsa.gov.
:video_camera: For all media or speaker inquiries, please email GSA’s Office of Strategic Communication (OSC).
For a wider list of contacts, see our [Directory of services, tools, and teams]({{< ref "/services/directory.md" >}}) »
The Site Scanning program automates a wide range of scans of public federal websites and generates data about website health, policy compliance, and best practices.
The program is a shared service provided at no cost for federal agencies and the public to use. At its core is the Federal Website Index, a reference dataset listing all public federal .gov sites by agency/department. Daily scans generate over 1.5 million fields of data about 26,000 federal .gov websites, made publicly available via API and bulk download.
We scan federal domains for:
All scan data can be downloaded directly as a CSV or JSON file or accessed through the Site Scanning API.
Much deeper program detail can be found in the program''s documentation hub. The major sections include:
The creation of the underlying website index is explained in the separate Federal Website Index repository. It includes links to the original datasets, as well as descriptions of how they are assembled and filtered in order to create the list of URLs that are then scanned.
Questions? Email the Site Scanning team at site-scanning@gsa.gov.
' + format: html + summary: '' + field_deck: + - + value: 'A set of daily scans of the federal web presence.' + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_guide_weight: + - + value: 3 + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'This program is available to automatically generate data about the health and best practices of federal websites.' + format: html + field_summary_box: + - + value: true + field_topics: + - + entity: 58b5051e-356e-4ace-be42-ca090259d6ab diff --git a/web/modules/custom/default_content_config/content/node/bd7fedff-9767-49b3-8a71-8bab51265a86.yml b/web/modules/custom/default_content_config/content/node/bd7fedff-9767-49b3-8a71-8bab51265a86.yml new file mode 100644 index 0000000..fee1927 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/bd7fedff-9767-49b3-8a71-8bab51265a86.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: bd7fedff-9767-49b3-8a71-8bab51265a86 + bundle: community + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Web Analytics and Optimization' + created: + - + value: 1729636289 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'In government, those with analytics as part of their duties are faced with a fast-paced, ever-changing environment. Technologies, strategies, and tools change regularly. This community aims to uncover best practices, case studies, tips, and tools for web analytics and optimization.
We run meetings and trainings, engage in collaborative discussion, and send general emails with updates on new technology and trends.
We’re government website analysts, developers, content strategists, user experience (UX) designers, communications professionals, or any and everyone else who use data to improve the public’s interaction with government sites.
The Digital Analytics Program (DAP) helps federal agencies understand how the public finds, accesses, and uses government services online.
The U.S. General Services Administration (GSA) provides DAP as a shared service, so all federal agencies can use DAP’s web analytics tools, training, and support at no cost.
DAP uses Google Analytics 360 to measure traffic and engagement across thousands of federal government websites and apps, reporting analytics under a single federal-wide shared account. Google Analytics 360 is the paid, enterprise version of Google Analytics 4 (GA4).
For millions, access to digital services isn’t a luxury — it’s critical. And the public’s experiences using government websites to find unemployment support, file taxes, apply for student loans, or get assistance with housing, childcare, or food can dramatically affect how they feel about the federal government.
All federal agencies can use DAP to better understand user behavior and improve their public-facing websites and digital services, which will make it easier for the public to access the information and services that they count on each and every day.
Additionally, M-23-22, Delivering a Digital-First Public Experience requires all federal executive branch agencies to use DAP:
{{< quote-block text="Agencies are required to participate in GSA’s government-wide Digital Analytics Program (DAP). Participation in DAP does not preclude agencies from using other web analytics services." cite="M-23-22, Section III-A, Subsection 6" >}}
{{< box >}}
Do you have a question for the DAP team? Send an email to dap@gsa.gov, and they’ll get back to you.
{{< /box >}}
' + format: html + summary: '' + field_deck: + - + value: 'A free analytics tool for measuring digital services in the federal government' + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_guide_weight: + - + value: 5 + field_page_weight: + - + value: 0 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_summary: + - + value: 'he Digital Analytics Program (DAP) offers advanced, easy web analytics for federal agencies.' + format: html + field_summary_box: + - + value: false + field_topics: + - + entity: ad7aa7a5-33cf-400e-93cf-11820e467111 diff --git a/web/modules/custom/default_content_config/content/node/cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3.yml b/web/modules/custom/default_content_config/content/node/cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3.yml new file mode 100644 index 0000000..fdbcd50 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3.yml @@ -0,0 +1,41 @@ +_meta: + version: '1.0' + entity_type: node + uuid: cbcd65ff-8274-46c7-89bc-9f8c2bdaddd3 + bundle: resources + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'An introduction to privacy' + created: + - + value: 1729617794 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Federal agencies must take great care when collecting information from users to protect their privacy, and publish a privacy policy to clearly disclose how that information will be used. The privacy policy should be easy for users to find and understand (written in plain language), and include a link to the agency’s Privacy Program page. Privacy controls prevent the inappropriate disclosure of sensitive information.
As public servants, one of our greatest responsibilities is to ensure that people can trust us to keep their information safe. Protecting the privacy of visitors to federal websites is paramount to improving the public’s trust in government.
Personally identifiable information, commonly known as PII, includes any piece of information that could be used to identify a specific person.
Generally, personally identifiable information is a name or unique identifier, plus one of the following data elements:
If your agency needs to collect personally identifiable information from users (or if users could provide this information even if you don’t ask for it), your agency should publish a Privacy Act Statement that explains the agency’s legal authority for collecting personal data and how that data will be used.
When determining whether and how to collect personally identifiable information, identify a clear business requirement for every piece of information, and collect only the information you need to meet that requirement. Never collect personally identifiable information “just in case.” Apply this same rigor not just to websites, but other methods of information collection such as surveys and customer emails.
To help users understand why you’re asking for their personally identifiable information:
To complete your privacy coverage, consult with your agency’s Privacy Office to put strong controls in place to keep user information safe. Discuss whether you need to conduct a Privacy Threshold Assessment (PTA) or Privacy Impact Assessment (PIA), or publish a System of Records Notice (SORN). Also consult with them when considering adoption of third-party websites and applications, to ensure proper privacy protections are in place for users.
Do you ever wonder how many visitors your agency’s privacy website gets, what they search for, how long they stay, and if they are mobile users? Or does your Senior Agency Official for Privacy ever ask how well your privacy resources are serving your users?
It’s important to understand how visitors use the privacy pages on your agency websites. Watch the 52-minute video, Analyzing web metrics for federal privacy professionals, to understand how you can use data from the Digital Analytics Program to improve the privacy-related pages on your website.
' + format: html + summary: '' + field_deck: + - + value: 'Understand privacy requirements for agency websites' + format: html + field_summary: + - + value: 'ntroductory guidance on implementing privacy protections for users of federal websites.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/cd2adb55-9ee9-4ff2-b400-7c0ae1daff48.yml b/web/modules/custom/default_content_config/content/node/cd2adb55-9ee9-4ff2-b400-7c0ae1daff48.yml new file mode 100644 index 0000000..d4b2ec3 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/cd2adb55-9ee9-4ff2-b400-7c0ae1daff48.yml @@ -0,0 +1,131 @@ +_meta: + version: '1.0' + entity_type: node + uuid: cd2adb55-9ee9-4ff2-b400-7c0ae1daff48 + bundle: event + default_langcode: en + depends: + e2e80683-d456-446a-acbd-a03ff409bf1d: node + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media + ad7aa7a5-33cf-400e-93cf-11820e467111: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Plain Language: Accessibility for Content' + created: + - + value: 1729712692 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: '{{< asset-static file="plain-accessibility-slides-march-2021.pdf" label="View the accessible slides (PDF, 186 KB, 17 pages)" >}}
The presentation will focus on concerns and opportunities shared by the Section 508 and plain language communities. Topics will include:
*The Plain Language Action and Information Network (PLAIN) is a group of federal employees from different agencies and specialties who support the use of clear communication in government
' + format: html + summary: '' + field_authors: + - + entity: e2e80683-d456-446a-acbd-a03ff409bf1d + field_captions: + - + uri: 'https://www.captionedtext.com/client/event.aspx?EventID=4718078&CustomerID=321' + title: '' + options: { } + field_deck: + - + value: 'Learn what the plain language and accessibility communities share: opportunities to help people get and understand information. Find out what you can do to help.' + format: html + field_end_date: + - + value: '2021-03-10T20:00:00' + field_event_organizer: + - + value: Digital.gov + field_event_platform: + - + value: zoom + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_host: + - + value: 'Plain Language Community of Practice' + field_kicker: + - + value: 'Plain Language' + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_registration_url: + - + uri: 'https://www.eventbrite.com/e/plain-language-and-section-508-tickets-142940070599' + title: '' + options: { } + field_start_date: + - + value: '2021-03-10T19:00:00' + field_summary: + - + value: 'Come join us as we focus on concerns and opportunities shared by the Section 508 and plain language communities in Government!' + format: html + field_topics: + - + entity: ad7aa7a5-33cf-400e-93cf-11820e467111 + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bc70d89f-e1d7-4f62-9113-a496e3cfd3d6 + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729712906 + behavior_settings: + - + value: { } + field_venue_address: + - + value: '1800 F Street NW' + field_venue_city: + - + value: Washington + field_venue_country: + - + value: 'United States' + field_venue_name: + - + value: 'General Services Administration' + field_venue_room: + - + value: '1200' + field_venue_state: + - + value: DC + field_venue_zip: + - + value: '20006' + field_youtube_id: + - + value: n_WYcQnVOf4 diff --git a/web/modules/custom/default_content_config/content/node/cda4e111-a7b4-4e38-86b6-5f9c095c2300.yml b/web/modules/custom/default_content_config/content/node/cda4e111-a7b4-4e38-86b6-5f9c095c2300.yml new file mode 100644 index 0000000..02f39fc --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/cda4e111-a7b4-4e38-86b6-5f9c095c2300.yml @@ -0,0 +1,32 @@ +_meta: + version: '1.0' + entity_type: node + uuid: cda4e111-a7b4-4e38-86b6-5f9c095c2300 + bundle: services + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Services-all required fields' + created: + - + value: 1729471454 + promote: + - + value: false + sticky: + - + value: false + field_summary: + - + value: 'Lorem ipsum odor amet, consectetuer adipi' + format: html diff --git a/web/modules/custom/default_content_config/content/node/ce1da83b-2593-46e2-b3df-f7f77b7c2a3f.yml b/web/modules/custom/default_content_config/content/node/ce1da83b-2593-46e2-b3df-f7f77b7c2a3f.yml new file mode 100644 index 0000000..f1a7e9a --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/ce1da83b-2593-46e2-b3df-f7f77b7c2a3f.yml @@ -0,0 +1,48 @@ +_meta: + version: '1.0' + entity_type: node + uuid: ce1da83b-2593-46e2-b3df-f7f77b7c2a3f + bundle: news + default_langcode: en + depends: + 220a49de-e1ee-4314-ba79-39e0b3cf552a: node + 58b5051e-356e-4ace-be42-ca090259d6ab: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'You might not be as agile as you think you are' + created: + - + value: 1729710000 + promote: + - + value: false + sticky: + - + value: false + field_authors: + - + entity: 220a49de-e1ee-4314-ba79-39e0b3cf552a + field_deck: + - + value: 'The mandate to be agile is everywhere. But agile isn’t an on-off switch. It’s a skill and a mindset that is developed over time, through dedicated work, open teams, and lots (and lots) of practice ' + format: html + field_kicker: + - + value: 'Continuous Improvement' + field_summary: + - + value: 'The mandate to be agile is everywhere. But agile isn’t an on-off switch. It’s a skill and a mindset that is developed over time, through dedicated work, open teams, and lots (and lots) of practice' + format: html + field_topics: + - + entity: 58b5051e-356e-4ace-be42-ca090259d6ab diff --git a/web/modules/custom/default_content_config/content/node/d22455bc-ccf3-4079-a2bb-ecf67310af4b.yml b/web/modules/custom/default_content_config/content/node/d22455bc-ccf3-4079-a2bb-ecf67310af4b.yml new file mode 100644 index 0000000..3458685 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/d22455bc-ccf3-4079-a2bb-ecf67310af4b.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: d22455bc-ccf3-4079-a2bb-ecf67310af4b + bundle: short_post + default_langcode: en + depends: + a6224150-45d6-40ba-aa33-6a3e61a6830c: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Centers of Excellence' + created: + - + value: 1730152361 + promote: + - + value: false + sticky: + - + value: false + field_short_post_type: + - + value: service + field_source: + - + entity: a6224150-45d6-40ba-aa33-6a3e61a6830c + field_summary: + - + value: 'We implement IT modernization at federal agencies by leveraging private sector innovation and government services while centralizing best practices and expertise for holistic transformation.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/daf21905-f24f-44d5-bfc2-e53e5cb41d51.yml b/web/modules/custom/default_content_config/content/node/daf21905-f24f-44d5-bfc2-e53e5cb41d51.yml new file mode 100644 index 0000000..6c763e6 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/daf21905-f24f-44d5-bfc2-e53e5cb41d51.yml @@ -0,0 +1,33 @@ +_meta: + version: '1.0' + entity_type: node + uuid: daf21905-f24f-44d5-bfc2-e53e5cb41d51 + bundle: source + default_langcode: en + depends: + 261021f8-1c56-4529-b0fe-e008bb65d033: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Source-all required fields' + created: + - + value: 1729471725 + promote: + - + value: false + sticky: + - + value: false + field_logo: + - + entity: 261021f8-1c56-4529-b0fe-e008bb65d033 diff --git a/web/modules/custom/default_content_config/content/node/ddfe8ef0-9df2-4e67-9ebc-cfe54b3083a7.yml b/web/modules/custom/default_content_config/content/node/ddfe8ef0-9df2-4e67-9ebc-cfe54b3083a7.yml new file mode 100644 index 0000000..cb21bc7 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/ddfe8ef0-9df2-4e67-9ebc-cfe54b3083a7.yml @@ -0,0 +1,49 @@ +_meta: + version: '1.0' + entity_type: node + uuid: ddfe8ef0-9df2-4e67-9ebc-cfe54b3083a7 + bundle: basic_page + default_langcode: en + depends: + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Basic-page-all fields' + created: + - + value: 1729524469 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
' + format: html + summary: '' + field_deck: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_page_weight: + - + value: 1 + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html diff --git a/web/modules/custom/default_content_config/content/node/defbb29a-c5ce-4d73-b4ce-027e9fab7376.yml b/web/modules/custom/default_content_config/content/node/defbb29a-c5ce-4d73-b4ce-027e9fab7376.yml new file mode 100644 index 0000000..ef3e1c4 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/defbb29a-c5ce-4d73-b4ce-027e9fab7376.yml @@ -0,0 +1,54 @@ +_meta: + version: '1.0' + entity_type: node + uuid: defbb29a-c5ce-4d73-b4ce-027e9fab7376 + bundle: event + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Event-all required fields' + created: + - + value: 1729711401 + promote: + - + value: false + sticky: + - + value: false + field_start_date: + - + value: '9999-09-09T13:09:09' + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 13b168e5-b995-4c6e-b0b8-e4c27d9cdfc5 + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729711487 + behavior_settings: + - + value: { } diff --git a/web/modules/custom/default_content_config/content/node/e240a7bd-b329-4ddd-9ec8-e5508dfbd613.yml b/web/modules/custom/default_content_config/content/node/e240a7bd-b329-4ddd-9ec8-e5508dfbd613.yml new file mode 100644 index 0000000..e41cc55 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/e240a7bd-b329-4ddd-9ec8-e5508dfbd613.yml @@ -0,0 +1,136 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e240a7bd-b329-4ddd-9ec8-e5508dfbd613 + bundle: event + default_langcode: en + depends: + e41f15bf-c2b5-423c-a6ad-6c201e54abf0: node + 6bd8641f-84c6-4ddb-b8b2-9c076b017198: media + 95077128-6d33-4445-a48a-4ad8ebb7d9b3: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Event-all fields' + created: + - + value: 1729461236 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Lorem ipsum odor amet, consectetuer adipiscing elit. Dapibus facilisis tellus eleifend cras lectus diam efficitur. Porttitor aenean habitasse magna inceptos commodo litora. Magna fermentum sit phasellus taciti neque venenatis feugiat proin! Himenaeos nam leo hendrerit netus litora luctus porttitor? Congue habitasse faucibus habitasse nascetur sit. Dolor hac sagittis ligula vulputate; elit quisque mi tempor. Posuere penatibus vehicula orci suspendisse tortor netus nostra leo laoreet.
Cursus etiam metus sagittis ultricies, aliquet eget. Nostra euismod feugiat fames suspendisse hendrerit dapibus phasellus felis. Tempor tellus lacus convallis varius hac turpis. Pulvinar augue fusce accumsan suscipit molestie interdum augue porta. Consectetur maximus pulvinar ex curae nostra tellus nisi eu. Convallis mattis ex ullamcorper nisl neque mi torquent. Eros inceptos dis pretium lectus sem mus a. Faucibus proin luctus ultrices; vestibulum tincidunt rutrum.
' + format: html + summary: '' + field_authors: + - + entity: e41f15bf-c2b5-423c-a6ad-6c201e54abf0 + field_captions: + - + uri: 'https://lorem.co' + title: '' + options: { } + field_deck: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_end_date: + - + value: '2024-06-20T19:00:00' + field_event_organizer: + - + value: Digital.gov + field_event_platform: + - + value: 'nulla iaculis ligula fames proin in erat' + field_featured_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_host: + - + value: 'nulla iaculis ligula fames proin in erat' + field_kicker: + - + value: 'nulla iaculis ligula fames proin in erat' + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 6bd8641f-84c6-4ddb-b8b2-9c076b017198 + field_registration_url: + - + uri: 'https://lorem.com' + title: '' + options: { } + field_start_date: + - + value: '2024-06-20T18:00:00' + field_summary: + - + value: 'nulla iaculis ligula fames proin in erat' + format: html + field_topics: + - + entity: 95077128-6d33-4445-a48a-4ad8ebb7d9b3 + field_venue: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f9adc7b8-ad90-4372-930e-0669cbdbd76a + bundle: venue + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1729462206 + behavior_settings: + - + value: { } + field_venue_address: + - + value: '1800 F Street NW' + field_venue_city: + - + value: Washington + field_venue_country: + - + value: USA + field_venue_map: + - + uri: 'https://frppmap.gsa.gov/frppmap/' + title: '' + options: { } + field_venue_name: + - + value: 'General Services Administration' + field_venue_room: + - + value: '1200' + field_venue_state: + - + value: DC + field_venue_zip: + - + value: '20006' + field_youtube_id: + - + value: 'nulla iaculis ligula fames proin in erat' diff --git a/web/modules/custom/default_content_config/content/node/e2e80683-d456-446a-acbd-a03ff409bf1d.yml b/web/modules/custom/default_content_config/content/node/e2e80683-d456-446a-acbd-a03ff409bf1d.yml new file mode 100644 index 0000000..ce14ca0 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/e2e80683-d456-446a-acbd-a03ff409bf1d.yml @@ -0,0 +1,64 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e2e80683-d456-446a-acbd-a03ff409bf1d + bundle: authors + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Dan Williams' + created: + - + value: 1729604802 + promote: + - + value: false + sticky: + - + value: false + field_agency_acronym: + - + value: GSA + field_agency_full_name: + - + value: 'U.S. General Services Administration' + field_bio: + - + value: 'Dan Williams is the program lead for the U.S. Web Design System (USWDS).' + format: html + field_bio_url: + - + uri: 'https://designsystem.digital.gov/' + title: '' + options: { } + field_email: + - + value: daniel.williams@gsa.gov + field_first_name: + - + value: Dan + format: html + field_github: + - + value: thisisdano + field_last_name: + - + value: Williams + format: html + field_location: + - + value: 'Portland, OR' + field_summary: + - + value: 'The people who have contributed their stories and guidance over the years.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/e41f15bf-c2b5-423c-a6ad-6c201e54abf0.yml b/web/modules/custom/default_content_config/content/node/e41f15bf-c2b5-423c-a6ad-6c201e54abf0.yml new file mode 100644 index 0000000..733be63 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/e41f15bf-c2b5-423c-a6ad-6c201e54abf0.yml @@ -0,0 +1,43 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e41f15bf-c2b5-423c-a6ad-6c201e54abf0 + bundle: authors + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Bridget Roddy' + created: + - + value: 1729604222 + promote: + - + value: false + sticky: + - + value: false + field_email: + - + value: roddybl@state.gov + field_first_name: + - + value: Bridget + format: html + field_last_name: + - + value: Roddy + format: html + field_summary: + - + value: 'The people who have contributed their stories and guidance over the years.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/e60a3199-17d7-4c13-8b76-f0bbaef67bcd.yml b/web/modules/custom/default_content_config/content/node/e60a3199-17d7-4c13-8b76-f0bbaef67bcd.yml new file mode 100644 index 0000000..ec526ff --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/e60a3199-17d7-4c13-8b76-f0bbaef67bcd.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e60a3199-17d7-4c13-8b76-f0bbaef67bcd + bundle: landing_page + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: Events + created: + - + value: 1729527420 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Speakers
This event is part of a monthly series that takes place on the third Thursday of each month. Don’t forget to set a placeholder on your personal calendar for our future events this year.
The U.S. Web Design System is a toolkit of principles, guidance, and code to help government teams design and build accessible, mobile-friendly websites backed by user research and modern best practices.
Disclaimer: All references to specific brands, products, and/or companies are used only for illustrative purposes and do not imply endorsement by the U.S. federal government or any federal government agency.
' + format: html + summary: '' + field_buttons: + - + uri: 'http://www.digital.gov' + title: 'Placeholder Button' + options: { } + field_summary: + - + value: 'The U.S. Web Design System team will answer community questions and give an update on their work developing web components for the design system.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/ea91eff1-f23a-4efc-a197-2606f95ced68.yml b/web/modules/custom/default_content_config/content/node/ea91eff1-f23a-4efc-a197-2606f95ced68.yml new file mode 100644 index 0000000..09542eb --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/ea91eff1-f23a-4efc-a197-2606f95ced68.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: ea91eff1-f23a-4efc-a197-2606f95ced68 + bundle: short_post + default_langcode: en + depends: + 2356fbee-5307-45ef-be92-c721305c8f7a: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'USAGov and USAGov en Español' + created: + - + value: 1730152519 + promote: + - + value: false + sticky: + - + value: false + field_short_post_type: + - + value: service + field_source: + - + entity: 2356fbee-5307-45ef-be92-c721305c8f7a + field_summary: + - + value: 'A customer service platform that helps the public navigate the government space by providing topical information and services in English and Spanish.' + format: html diff --git a/web/modules/custom/default_content_config/content/node/f0dc319d-abd2-4a06-bb17-1a9cd3ee3ad2.yml b/web/modules/custom/default_content_config/content/node/f0dc319d-abd2-4a06-bb17-1a9cd3ee3ad2.yml new file mode 100644 index 0000000..8ebf0df --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/f0dc319d-abd2-4a06-bb17-1a9cd3ee3ad2.yml @@ -0,0 +1,35 @@ +_meta: + version: '1.0' + entity_type: node + uuid: f0dc319d-abd2-4a06-bb17-1a9cd3ee3ad2 + bundle: guides + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Guide-all required fields' + created: + - + value: 1729463294 + promote: + - + value: false + sticky: + - + value: false + field_summary: + - + value: 'A ‘quick-start’ guide for embedding accessibility and inclusive design practices into your team’s workflow' + format: html + field_summary_box: + - + value: false diff --git a/web/modules/custom/default_content_config/content/node/f344cc5d-7abd-426b-ab10-22e1065993f3.yml b/web/modules/custom/default_content_config/content/node/f344cc5d-7abd-426b-ab10-22e1065993f3.yml new file mode 100644 index 0000000..0a739cd --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/f344cc5d-7abd-426b-ab10-22e1065993f3.yml @@ -0,0 +1,56 @@ +_meta: + version: '1.0' + entity_type: node + uuid: f344cc5d-7abd-426b-ab10-22e1065993f3 + bundle: news + default_langcode: en + depends: + 220a49de-e1ee-4314-ba79-39e0b3cf552a: node + 48556cac-53e4-4f0e-85c9-b44cd9867296: media + bfc21cc0-5de7-4b9f-8dcd-4b1da264ace5: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Zero Pageviews Is Your Goal: Finding Problem Pages with Website Analytics' + created: + - + value: 1729710311 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'Website analytics are great for monitoring visits to the content that your team has spent time and resources working on. Are people finding this important content? Which parts of the content are people using the most
However, website analytics are also important for tracking the performance of the web pages that you don’t want people to visit. These are pages that you would expect to be associated with bad experiences and frustration. Most commonly, I’m talking about error pages, but there are other negative page visits that could be measured on your site, too.
The easiest place to look for problems is 404 pages. In most situations, your website is set up to have 404s when the URL requested by the browser doesn’t match an expected one. These pageviews to your 404 page still register hits to your analytics account, so you can examine these URLs and perform other analysis there.
{{< img src="kaufmann-404-page-spike" >}}
If you’re using the Digital Analytic Program’s (DAP) Google Analytics account, filters have been set up that make finding visits to 404s easy. You can search for URLs with the substring “vpv404” inserted between the hostname (i.e., usa.gov) and the path (i.e. /consumer-problems
). If DAP has referral information for the URL (where the user came from), it will append that to the URL after a forward slash. This can help with figuring out the problem.
If you don’t use DAP, you will want to figure out how to filter for URLs that have led to 404 errors. One way that might work is to filter with the Page Title dimension; for example, the strings “404” or “error” may be a part of all the page titles for not found pages.
USAGov has had a lot of success correcting problems by using this method. For example, we have discovered and rectified issues like:
You may have pages that are not 404s but you don’t expect to get many visits, like an “about your website” page. Lots of traffic to pages likes this may be a sign of confused users, perhaps poking around your footer trying to orient themselves. So, you might want to investigate. At USA.gov, we have found too much traffic heading towards our contact page for media and our email subscription sign-up page, and these have led to us to explore design changes.
One of our most noteworthy examples of tracking pages that we didn’t want users to visit involves discovering hostnames that were not ours appearing in our Analytics account. Long story short, criminals were copying our web page code to create websites to steal personally identifiable information and money from users. Luckily, we were digging deep in our analytics account for things that looked wrong, and not just right. (We discovered this problem with a different account from DAP, because we had one that let us track hits to our pages regardless of hostname.)
There are lots of problems that impact real visitors negatively that can be discovered by using your analytics products to look at the pages you don’t want people visiting. It might sound upside down, but flipping your analytics strategy can sometimes help you improve the experience for lots of web-crawling Americans. What’s more, it can be a part of your analytics work where the metric goals will be clear to everyone: zero!
' + format: html + summary: '' + field_authors: + - + entity: 220a49de-e1ee-4314-ba79-39e0b3cf552a + field_kicker: + - + value: Metrics + field_page_weight: + - + value: 1 + field_primary_image: + - + entity: 48556cac-53e4-4f0e-85c9-b44cd9867296 + field_summary: + - + value: 'Improve customer experience by turning your website analytics upside down to track the numbers for pages you DON’T want visitors to see. ' + format: html + field_topics: + - + entity: bfc21cc0-5de7-4b9f-8dcd-4b1da264ace5 diff --git a/web/modules/custom/default_content_config/content/node/f730da32-dce7-4d5f-843b-31b2563f7a7c.yml b/web/modules/custom/default_content_config/content/node/f730da32-dce7-4d5f-843b-31b2563f7a7c.yml new file mode 100644 index 0000000..2b42f78 --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/f730da32-dce7-4d5f-843b-31b2563f7a7c.yml @@ -0,0 +1,43 @@ +_meta: + version: '1.0' + entity_type: node + uuid: f730da32-dce7-4d5f-843b-31b2563f7a7c + bundle: services + default_langcode: en + depends: + ad7aa7a5-33cf-400e-93cf-11820e467111: node +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'U.S. Web Design System' + created: + - + value: 1729707930 + promote: + - + value: false + sticky: + - + value: false + field_contact: + - + value: uswds@gsa.gov + field_page_weight: + - + value: 6 + field_summary: + - + value: 'A toolkit of principles, guidance, and code that helps agency digital teams build accessible, mobile-friendly government websites for the American public.' + format: html + field_topics: + - + entity: ad7aa7a5-33cf-400e-93cf-11820e467111 diff --git a/web/modules/custom/default_content_config/content/node/f8ffffda-7ab8-48d7-8e20-2f5d5277ec6d.yml b/web/modules/custom/default_content_config/content/node/f8ffffda-7ab8-48d7-8e20-2f5d5277ec6d.yml new file mode 100644 index 0000000..66eff7e --- /dev/null +++ b/web/modules/custom/default_content_config/content/node/f8ffffda-7ab8-48d7-8e20-2f5d5277ec6d.yml @@ -0,0 +1,40 @@ +_meta: + version: '1.0' + entity_type: node + uuid: f8ffffda-7ab8-48d7-8e20-2f5d5277ec6d + bundle: community + default_langcode: en +default: + revision_uid: + - + target_id: 1 + status: + - + value: true + uid: + - + target_id: 1 + title: + - + value: 'Plain Language' + created: + - + value: 1729618654 + promote: + - + value: false + sticky: + - + value: false + body: + - + value: 'The Plain Language community is a group of government employees and contractors dedicated to the idea that citizens deserve clear communications from government. We believe that using plain language saves government agencies time and money and provides better service to the American public.
Throughout the year, the community provides training and hosts plain-language related events. Our community offers support and answers to members’ questions.
We’re a group of plain language practitioners with varying specialties and different levels of expertise.
The A/B Testing Community of Practice organizes meetings to discuss the latest in A/B testing. We invite guest speakers, share case studies, explore new tools, and provide support for new and current members trying to grow their A/B testing practice and knowledge.
The A/B Testing Community of Practice started with a team at the Consumer Financial Protection Bureau (CFPB), circa 2016. We were inspired by what we’d learned from our own tests that, and see what we could learn from case studies outside CFPB. We are driven to foster a group that can share their experiences and learn from one another.
Community Managers: