├── .DS_Store ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── photoalbums ├── .gitignore ├── .graphqlconfig.yml ├── README.md ├── amplify │ ├── .config │ │ └── project-config.json │ └── backend │ │ ├── api │ │ └── photoalbums │ │ │ ├── parameters.json │ │ │ ├── schema.graphql │ │ │ ├── stacks │ │ │ └── CustomResources.json │ │ │ └── transform.conf.json │ │ ├── auth │ │ └── photoalbums82bf3f7d │ │ │ ├── parameters.json │ │ │ └── photoalbums82bf3f7d-cloudformation-template.yml │ │ ├── backend-config.json │ │ ├── function │ │ └── S3Triggerb18990d7 │ │ │ ├── S3Triggerb18990d7-cloudformation-template.json │ │ │ ├── function-parameters.json │ │ │ └── src │ │ │ ├── event.json │ │ │ ├── index copy.js │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── storage │ │ └── s374ea815c │ │ ├── parameters.json │ │ ├── s3-cloudformation-template.json │ │ └── storage-params.json ├── old ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── rekognition_policy_for_s3_trigger └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── graphql │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── setupTests.js └── workshop-content ├── .DS_Store ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── 10_prerequisites │ ├── 10_workspace.md │ ├── 1_account.md │ ├── 20_software.md │ └── _index.md ├── 110_ai │ ├── 10_rekognition.md │ ├── 20_prep_for_searching.md │ ├── 40_searching_for_labels.md │ └── _index.md ├── 111_analytics │ ├── _index.md │ ├── setup-pinpoint.md │ ├── tracking-events.md │ └── tracking-users.md ├── 120_deploying │ ├── 10_deploying.md │ └── _index.md ├── 130_wrapping_up │ ├── 10_what_we_built.md │ ├── 20_cleanup.md │ └── _index.md ├── 20_getting_started │ ├── 10_what_we_will_build.md │ ├── 20_bootstrapping_the_app.md │ └── _index.md ├── 30_adding_auth │ ├── 10_adding_auth_back.md │ ├── 20_adding_auth_front.md │ └── _index.md ├── 40_graphql │ ├── 10_setting_up_appsync.md │ ├── 20_trying_out_queries.md │ └── _index.md ├── 50_working_with_albums │ ├── 5_managing_albums.md │ └── _index.md ├── 60_managing_photos │ ├── 30_adding_storage.md │ ├── 40_upload_photos_consolidated.md │ └── _index.md ├── 70_generating_thumbnails │ ├── 10_processing_photos_with_the_s3_trigger_lambda_function.md │ └── _index.md └── _index.md ├── index.html ├── layouts ├── .DS_Store ├── partials │ ├── custom-footer.html │ ├── header.html │ ├── logo.html │ └── menu-footer.html └── shortcodes │ ├── safehtml.html │ ├── tab.html │ └── tabs.html ├── package.json ├── scripts ├── build.js └── package.json ├── source_content ├── 10_prerequisites │ ├── 10_workspace.md │ ├── 1_account.md │ ├── 20_software.md │ └── _index.md ├── 110_ai │ ├── 10_rekognition.md │ ├── 20_prep_for_searching.md │ ├── 40_searching_for_labels.md │ └── _index.md ├── 111_analytics │ ├── _index.md │ ├── setup-pinpoint.md │ ├── tracking-events.md │ └── tracking-users.md ├── 120_deploying │ ├── 10_deploying.md │ └── _index.md ├── 130_wrapping_up │ ├── 10_what_we_built.md │ ├── 20_cleanup.md │ └── _index.md ├── 20_getting_started │ ├── 10_what_we_will_build.md │ ├── 20_bootstrapping_the_app.md │ └── _index.md ├── 30_adding_auth │ ├── 10_adding_auth_back.md │ ├── 20_adding_auth_front.md │ └── _index.md ├── 40_graphql │ ├── 10_setting_up_appsync.md │ ├── 20_trying_out_queries.md │ └── _index.md ├── 50_working_with_albums │ ├── 5_managing_albums.md │ └── _index.md ├── 60_managing_photos │ ├── 30_adding_storage.md │ ├── 40_upload_photos_consolidated.md │ └── _index.md ├── 70_generating_thumbnails │ ├── 10_processing_photos_with_the_s3_trigger_lambda_function.md │ └── _index.md └── _index.md ├── static ├── .DS_Store ├── 640px-Amazon_Web_Services_Logo.svg.png ├── AWS-Logo.svg ├── Amazon_Web_Services_Logo.svg ├── css │ ├── diff2html.min.css │ ├── jquery-ui.min.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.min.css │ └── theme-mine.css ├── images │ ├── amplify-add-auth.png │ ├── amplify-storage-add.png │ ├── amplify_add_analytics.png │ ├── amplify_init-old.png │ ├── amplify_init.png │ ├── app-albums-screen.png │ ├── app-signin-screen.png │ ├── appsync-logo.png │ ├── appsync_createAlbum_edit.png │ ├── appsync_createAlbum_edit2.png │ ├── appsync_labeledphotos_role.png │ ├── appsync_queries.png │ ├── architecture.png │ ├── c9_force_update_credentials.png │ ├── c9_new_terminal.png │ ├── c9after.png │ ├── c9before.png │ ├── cf_find_auth_role.png │ ├── create_labeledphotos.png │ ├── dynamo_index.png │ ├── dynamo_photo_table_arn.png │ ├── favicon.png │ ├── getAlbum_responseMapping.png │ ├── iam-1-create-user.png │ ├── iam-2-attach-policy.png │ ├── iam-3-create-user.png │ ├── iam-4-save-url.png │ ├── lambda_s3_step1.png │ ├── lambda_s3_step2.png │ ├── meet_sam.png │ ├── photo_table_datasource.png │ ├── pinpoint_dashboard.png │ ├── pinpoint_demographics.png │ ├── pinpoint_endpoints.png │ ├── pop_browser_new_window.png │ ├── preview_running_application.png │ └── sam_init_cleanup.png └── js │ ├── diff2html-ui.min.js │ ├── diff2html.min.js │ ├── jquery-ui.js │ ├── jquery-ui.min.js │ ├── learn.js │ ├── shortbreadv1.js │ └── tabs.js └── themes ├── .DS_Store └── learn ├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes ├── chapter.md └── default.md ├── exampleSite ├── LICENSE.md ├── config.toml ├── content │ ├── _index.en.md │ ├── _index.fr.md │ ├── basics │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── configuration │ │ │ ├── _index.en.md │ │ │ └── _index.fr.md │ │ ├── installation │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── chapter.png │ │ ├── requirements │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── magic.gif │ │ └── style-customization │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ ├── blue-variant.png │ │ │ ├── green-variant.png │ │ │ └── red-variant.png │ ├── cont │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── archetypes.en.md │ │ ├── archetypes.fr.md │ │ ├── i18n │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ │ └── i18n-menu.gif │ │ ├── markdown.en.md │ │ ├── markdown.fr.md │ │ ├── menushortcuts.en.md │ │ ├── menushortcuts.fr.md │ │ └── pages │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ └── images │ │ │ ├── frontmatter-icon.png │ │ │ ├── pages-chapter.png │ │ │ └── pages-default.png │ ├── credits.en.md │ ├── credits.fr.md │ ├── shortcodes │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── attachments.en.files │ │ │ ├── BachGavotteShort.mp3 │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ ├── hugo.png │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ ├── attachments.en.md │ │ ├── attachments.fr.files │ │ │ ├── BachGavotteShort.mp3 │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ ├── hugo.png │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ ├── attachments.fr.md │ │ ├── button.en.md │ │ ├── button.fr.md │ │ ├── children │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ ├── children-1 │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ └── children-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── children-1-1-1-1-1 │ │ │ │ │ ├── _index.en.md │ │ │ │ │ └── _index.fr.md │ │ │ ├── children-2 │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ ├── test3.en.md │ │ │ │ └── test3.fr.md │ │ │ ├── children-3 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.fr.md │ │ │ ├── children-4 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.fr.md │ │ │ ├── test.en.md │ │ │ └── test.fr.md │ │ ├── expand.en.md │ │ ├── expand.fr.md │ │ ├── mermaid.en.md │ │ ├── mermaid.fr.md │ │ ├── notice.en.md │ │ ├── notice.fr.md │ │ ├── siteparam.en.md │ │ └── siteparam.fr.md │ ├── showcase.en.md │ └── showcase.fr.md ├── layouts │ ├── partials │ │ ├── custom-footer.html │ │ ├── logo.html │ │ └── menu-footer.html │ └── shortcodes │ │ └── ghcontributors.html └── static │ ├── css │ └── theme-mine.css │ ├── fonts │ ├── monogramos-webfont.eot │ ├── monogramos-webfont.svg │ ├── monogramos-webfont.ttf │ ├── monogramos-webfont.woff │ └── monogramos-webfont.woff2 │ └── images │ └── showcase │ └── tat.png ├── i18n ├── en.toml ├── es.toml ├── fr.toml └── pt.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ └── single.html ├── index.html ├── index.json ├── partials │ ├── custom-comments.html │ ├── custom-footer.html │ ├── custom-header.html │ ├── favicon.html │ ├── footer.html │ ├── header.html │ ├── logo.html │ ├── menu-footer.html │ ├── menu.html │ ├── meta.html │ ├── search.html │ └── toc.html └── shortcodes │ ├── attachments.html │ ├── button.html │ ├── children.html │ ├── expand.html │ ├── mermaid.html │ ├── notice.html │ ├── ref.html │ ├── relref.html │ └── siteparam.html ├── static ├── css │ ├── auto-complete.css │ ├── featherlight.min.css │ ├── font-awesome.min.css │ ├── hugo-theme.css │ ├── hybrid.css │ ├── nucleus.css │ ├── perfect-scrollbar.min.css │ ├── theme-blue.css │ ├── theme-green.css │ ├── theme-red.css │ └── theme.css ├── fonts │ ├── FontAwesome.otf │ ├── Inconsolata.eot │ ├── Inconsolata.svg │ ├── Inconsolata.ttf │ ├── Inconsolata.woff │ ├── Novecentosanswide-Normal-webfont.eot │ ├── Novecentosanswide-Normal-webfont.svg │ ├── Novecentosanswide-Normal-webfont.ttf │ ├── Novecentosanswide-Normal-webfont.woff │ ├── Novecentosanswide-Normal-webfont.woff2 │ ├── Novecentosanswide-UltraLight-webfont.eot │ ├── Novecentosanswide-UltraLight-webfont.svg │ ├── Novecentosanswide-UltraLight-webfont.ttf │ ├── Novecentosanswide-UltraLight-webfont.woff │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ ├── Work_Sans_200.eot │ ├── Work_Sans_200.svg │ ├── Work_Sans_200.ttf │ ├── Work_Sans_200.woff │ ├── Work_Sans_200.woff2 │ ├── Work_Sans_300.eot │ ├── Work_Sans_300.svg │ ├── Work_Sans_300.ttf │ ├── Work_Sans_300.woff │ ├── Work_Sans_300.woff2 │ ├── Work_Sans_500.eot │ ├── Work_Sans_500.svg │ ├── Work_Sans_500.ttf │ ├── Work_Sans_500.woff │ ├── Work_Sans_500.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── clippy.svg │ ├── favicon.png │ └── gopher-404.jpg ├── js │ ├── auto-complete.js │ ├── clipboard.min.js │ ├── featherlight.min.js │ ├── highlight.pack.js │ ├── html5shiv-printshiv.min.js │ ├── hugo-learn.js │ ├── jquery-2.x.min.js │ ├── jquery-3.3.1.min.js │ ├── jquery.sticky.js │ ├── learn.js │ ├── lunr.min.js │ ├── modernizr.custom.71422.js │ ├── perfect-scrollbar.jquery.min.js │ ├── perfect-scrollbar.min.js │ └── search.js └── mermaid │ ├── mermaid.css │ ├── mermaid.dark.css │ ├── mermaid.forest.css │ └── mermaid.js ├── theme.toml └── wercker.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /photoalbums/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/.gitignore -------------------------------------------------------------------------------- /photoalbums/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/.graphqlconfig.yml -------------------------------------------------------------------------------- /photoalbums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/README.md -------------------------------------------------------------------------------- /photoalbums/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/.config/project-config.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/api/photoalbums/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/api/photoalbums/parameters.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/api/photoalbums/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/api/photoalbums/schema.graphql -------------------------------------------------------------------------------- /photoalbums/amplify/backend/api/photoalbums/stacks/CustomResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/api/photoalbums/stacks/CustomResources.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/api/photoalbums/transform.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 5 3 | } -------------------------------------------------------------------------------- /photoalbums/amplify/backend/auth/photoalbums82bf3f7d/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/auth/photoalbums82bf3f7d/parameters.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/auth/photoalbums82bf3f7d/photoalbums82bf3f7d-cloudformation-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/auth/photoalbums82bf3f7d/photoalbums82bf3f7d-cloudformation-template.yml -------------------------------------------------------------------------------- /photoalbums/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/S3Triggerb18990d7-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/S3Triggerb18990d7-cloudformation-template.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/function-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/function-parameters.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/src/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/src/event.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/src/index copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/src/index copy.js -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/src/index.js -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/src/package-lock.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/function/S3Triggerb18990d7/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/function/S3Triggerb18990d7/src/package.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/storage/s374ea815c/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/storage/s374ea815c/parameters.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/storage/s374ea815c/s3-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/amplify/backend/storage/s374ea815c/s3-cloudformation-template.json -------------------------------------------------------------------------------- /photoalbums/amplify/backend/storage/s374ea815c/storage-params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /photoalbums/old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/old -------------------------------------------------------------------------------- /photoalbums/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/package-lock.json -------------------------------------------------------------------------------- /photoalbums/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/package.json -------------------------------------------------------------------------------- /photoalbums/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/favicon.ico -------------------------------------------------------------------------------- /photoalbums/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/index.html -------------------------------------------------------------------------------- /photoalbums/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/logo192.png -------------------------------------------------------------------------------- /photoalbums/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/logo512.png -------------------------------------------------------------------------------- /photoalbums/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/manifest.json -------------------------------------------------------------------------------- /photoalbums/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/public/robots.txt -------------------------------------------------------------------------------- /photoalbums/rekognition_policy_for_s3_trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/rekognition_policy_for_s3_trigger -------------------------------------------------------------------------------- /photoalbums/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/App.css -------------------------------------------------------------------------------- /photoalbums/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/App.js -------------------------------------------------------------------------------- /photoalbums/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/App.test.js -------------------------------------------------------------------------------- /photoalbums/src/graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/graphql/mutations.js -------------------------------------------------------------------------------- /photoalbums/src/graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/graphql/queries.js -------------------------------------------------------------------------------- /photoalbums/src/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/graphql/schema.json -------------------------------------------------------------------------------- /photoalbums/src/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/graphql/subscriptions.js -------------------------------------------------------------------------------- /photoalbums/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/index.css -------------------------------------------------------------------------------- /photoalbums/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/index.js -------------------------------------------------------------------------------- /photoalbums/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/logo.svg -------------------------------------------------------------------------------- /photoalbums/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/serviceWorker.js -------------------------------------------------------------------------------- /photoalbums/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/photoalbums/src/setupTests.js -------------------------------------------------------------------------------- /workshop-content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/.DS_Store -------------------------------------------------------------------------------- /workshop-content/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /workshop-content/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/CONTRIBUTING.md -------------------------------------------------------------------------------- /workshop-content/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/LICENSE -------------------------------------------------------------------------------- /workshop-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/README.md -------------------------------------------------------------------------------- /workshop-content/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/archetypes/default.md -------------------------------------------------------------------------------- /workshop-content/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/config.toml -------------------------------------------------------------------------------- /workshop-content/content/10_prerequisites/10_workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/10_prerequisites/10_workspace.md -------------------------------------------------------------------------------- /workshop-content/content/10_prerequisites/1_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/10_prerequisites/1_account.md -------------------------------------------------------------------------------- /workshop-content/content/10_prerequisites/20_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/10_prerequisites/20_software.md -------------------------------------------------------------------------------- /workshop-content/content/10_prerequisites/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/10_prerequisites/_index.md -------------------------------------------------------------------------------- /workshop-content/content/110_ai/10_rekognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/110_ai/10_rekognition.md -------------------------------------------------------------------------------- /workshop-content/content/110_ai/20_prep_for_searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/110_ai/20_prep_for_searching.md -------------------------------------------------------------------------------- /workshop-content/content/110_ai/40_searching_for_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/110_ai/40_searching_for_labels.md -------------------------------------------------------------------------------- /workshop-content/content/110_ai/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/110_ai/_index.md -------------------------------------------------------------------------------- /workshop-content/content/111_analytics/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/111_analytics/_index.md -------------------------------------------------------------------------------- /workshop-content/content/111_analytics/setup-pinpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/111_analytics/setup-pinpoint.md -------------------------------------------------------------------------------- /workshop-content/content/111_analytics/tracking-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/111_analytics/tracking-events.md -------------------------------------------------------------------------------- /workshop-content/content/111_analytics/tracking-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/111_analytics/tracking-users.md -------------------------------------------------------------------------------- /workshop-content/content/120_deploying/10_deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/120_deploying/10_deploying.md -------------------------------------------------------------------------------- /workshop-content/content/120_deploying/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/120_deploying/_index.md -------------------------------------------------------------------------------- /workshop-content/content/130_wrapping_up/10_what_we_built.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/130_wrapping_up/10_what_we_built.md -------------------------------------------------------------------------------- /workshop-content/content/130_wrapping_up/20_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/130_wrapping_up/20_cleanup.md -------------------------------------------------------------------------------- /workshop-content/content/130_wrapping_up/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/130_wrapping_up/_index.md -------------------------------------------------------------------------------- /workshop-content/content/20_getting_started/10_what_we_will_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/20_getting_started/10_what_we_will_build.md -------------------------------------------------------------------------------- /workshop-content/content/20_getting_started/20_bootstrapping_the_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/20_getting_started/20_bootstrapping_the_app.md -------------------------------------------------------------------------------- /workshop-content/content/20_getting_started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/20_getting_started/_index.md -------------------------------------------------------------------------------- /workshop-content/content/30_adding_auth/10_adding_auth_back.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/30_adding_auth/10_adding_auth_back.md -------------------------------------------------------------------------------- /workshop-content/content/30_adding_auth/20_adding_auth_front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/30_adding_auth/20_adding_auth_front.md -------------------------------------------------------------------------------- /workshop-content/content/30_adding_auth/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/30_adding_auth/_index.md -------------------------------------------------------------------------------- /workshop-content/content/40_graphql/10_setting_up_appsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/40_graphql/10_setting_up_appsync.md -------------------------------------------------------------------------------- /workshop-content/content/40_graphql/20_trying_out_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/40_graphql/20_trying_out_queries.md -------------------------------------------------------------------------------- /workshop-content/content/40_graphql/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/40_graphql/_index.md -------------------------------------------------------------------------------- /workshop-content/content/50_working_with_albums/5_managing_albums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/50_working_with_albums/5_managing_albums.md -------------------------------------------------------------------------------- /workshop-content/content/50_working_with_albums/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/50_working_with_albums/_index.md -------------------------------------------------------------------------------- /workshop-content/content/60_managing_photos/30_adding_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/60_managing_photos/30_adding_storage.md -------------------------------------------------------------------------------- /workshop-content/content/60_managing_photos/40_upload_photos_consolidated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/60_managing_photos/40_upload_photos_consolidated.md -------------------------------------------------------------------------------- /workshop-content/content/60_managing_photos/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/60_managing_photos/_index.md -------------------------------------------------------------------------------- /workshop-content/content/70_generating_thumbnails/10_processing_photos_with_the_s3_trigger_lambda_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/70_generating_thumbnails/10_processing_photos_with_the_s3_trigger_lambda_function.md -------------------------------------------------------------------------------- /workshop-content/content/70_generating_thumbnails/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/70_generating_thumbnails/_index.md -------------------------------------------------------------------------------- /workshop-content/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/content/_index.md -------------------------------------------------------------------------------- /workshop-content/index.html: -------------------------------------------------------------------------------- 1 | WIP 2 | -------------------------------------------------------------------------------- /workshop-content/layouts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/.DS_Store -------------------------------------------------------------------------------- /workshop-content/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-content/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/partials/header.html -------------------------------------------------------------------------------- /workshop-content/layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/partials/logo.html -------------------------------------------------------------------------------- /workshop-content/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /workshop-content/layouts/shortcodes/safehtml.html: -------------------------------------------------------------------------------- 1 | {{ .Inner | safeHTML }} -------------------------------------------------------------------------------- /workshop-content/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /workshop-content/layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /workshop-content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/package.json -------------------------------------------------------------------------------- /workshop-content/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/scripts/build.js -------------------------------------------------------------------------------- /workshop-content/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/scripts/package.json -------------------------------------------------------------------------------- /workshop-content/source_content/10_prerequisites/10_workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/10_prerequisites/10_workspace.md -------------------------------------------------------------------------------- /workshop-content/source_content/10_prerequisites/1_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/10_prerequisites/1_account.md -------------------------------------------------------------------------------- /workshop-content/source_content/10_prerequisites/20_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/10_prerequisites/20_software.md -------------------------------------------------------------------------------- /workshop-content/source_content/10_prerequisites/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/10_prerequisites/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/110_ai/10_rekognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/110_ai/10_rekognition.md -------------------------------------------------------------------------------- /workshop-content/source_content/110_ai/20_prep_for_searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/110_ai/20_prep_for_searching.md -------------------------------------------------------------------------------- /workshop-content/source_content/110_ai/40_searching_for_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/110_ai/40_searching_for_labels.md -------------------------------------------------------------------------------- /workshop-content/source_content/110_ai/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/110_ai/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/111_analytics/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/111_analytics/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/111_analytics/setup-pinpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/111_analytics/setup-pinpoint.md -------------------------------------------------------------------------------- /workshop-content/source_content/111_analytics/tracking-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/111_analytics/tracking-events.md -------------------------------------------------------------------------------- /workshop-content/source_content/111_analytics/tracking-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/111_analytics/tracking-users.md -------------------------------------------------------------------------------- /workshop-content/source_content/120_deploying/10_deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/120_deploying/10_deploying.md -------------------------------------------------------------------------------- /workshop-content/source_content/120_deploying/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/120_deploying/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/130_wrapping_up/10_what_we_built.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/130_wrapping_up/10_what_we_built.md -------------------------------------------------------------------------------- /workshop-content/source_content/130_wrapping_up/20_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/130_wrapping_up/20_cleanup.md -------------------------------------------------------------------------------- /workshop-content/source_content/130_wrapping_up/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/130_wrapping_up/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/20_getting_started/10_what_we_will_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/20_getting_started/10_what_we_will_build.md -------------------------------------------------------------------------------- /workshop-content/source_content/20_getting_started/20_bootstrapping_the_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/20_getting_started/20_bootstrapping_the_app.md -------------------------------------------------------------------------------- /workshop-content/source_content/20_getting_started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/20_getting_started/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/30_adding_auth/10_adding_auth_back.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/30_adding_auth/10_adding_auth_back.md -------------------------------------------------------------------------------- /workshop-content/source_content/30_adding_auth/20_adding_auth_front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/30_adding_auth/20_adding_auth_front.md -------------------------------------------------------------------------------- /workshop-content/source_content/30_adding_auth/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/30_adding_auth/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/40_graphql/10_setting_up_appsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/40_graphql/10_setting_up_appsync.md -------------------------------------------------------------------------------- /workshop-content/source_content/40_graphql/20_trying_out_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/40_graphql/20_trying_out_queries.md -------------------------------------------------------------------------------- /workshop-content/source_content/40_graphql/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/40_graphql/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/50_working_with_albums/5_managing_albums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/50_working_with_albums/5_managing_albums.md -------------------------------------------------------------------------------- /workshop-content/source_content/50_working_with_albums/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/50_working_with_albums/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/60_managing_photos/30_adding_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/60_managing_photos/30_adding_storage.md -------------------------------------------------------------------------------- /workshop-content/source_content/60_managing_photos/40_upload_photos_consolidated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/60_managing_photos/40_upload_photos_consolidated.md -------------------------------------------------------------------------------- /workshop-content/source_content/60_managing_photos/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/60_managing_photos/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/70_generating_thumbnails/10_processing_photos_with_the_s3_trigger_lambda_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/70_generating_thumbnails/10_processing_photos_with_the_s3_trigger_lambda_function.md -------------------------------------------------------------------------------- /workshop-content/source_content/70_generating_thumbnails/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/70_generating_thumbnails/_index.md -------------------------------------------------------------------------------- /workshop-content/source_content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/source_content/_index.md -------------------------------------------------------------------------------- /workshop-content/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/.DS_Store -------------------------------------------------------------------------------- /workshop-content/static/640px-Amazon_Web_Services_Logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/640px-Amazon_Web_Services_Logo.svg.png -------------------------------------------------------------------------------- /workshop-content/static/AWS-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/AWS-Logo.svg -------------------------------------------------------------------------------- /workshop-content/static/Amazon_Web_Services_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/Amazon_Web_Services_Logo.svg -------------------------------------------------------------------------------- /workshop-content/static/css/diff2html.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/css/diff2html.min.css -------------------------------------------------------------------------------- /workshop-content/static/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/css/jquery-ui.min.css -------------------------------------------------------------------------------- /workshop-content/static/css/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/css/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /workshop-content/static/css/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/css/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /workshop-content/static/css/theme-mine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/css/theme-mine.css -------------------------------------------------------------------------------- /workshop-content/static/images/amplify-add-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/amplify-add-auth.png -------------------------------------------------------------------------------- /workshop-content/static/images/amplify-storage-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/amplify-storage-add.png -------------------------------------------------------------------------------- /workshop-content/static/images/amplify_add_analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/amplify_add_analytics.png -------------------------------------------------------------------------------- /workshop-content/static/images/amplify_init-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/amplify_init-old.png -------------------------------------------------------------------------------- /workshop-content/static/images/amplify_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/amplify_init.png -------------------------------------------------------------------------------- /workshop-content/static/images/app-albums-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/app-albums-screen.png -------------------------------------------------------------------------------- /workshop-content/static/images/app-signin-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/app-signin-screen.png -------------------------------------------------------------------------------- /workshop-content/static/images/appsync-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/appsync-logo.png -------------------------------------------------------------------------------- /workshop-content/static/images/appsync_createAlbum_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/appsync_createAlbum_edit.png -------------------------------------------------------------------------------- /workshop-content/static/images/appsync_createAlbum_edit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/appsync_createAlbum_edit2.png -------------------------------------------------------------------------------- /workshop-content/static/images/appsync_labeledphotos_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/appsync_labeledphotos_role.png -------------------------------------------------------------------------------- /workshop-content/static/images/appsync_queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/appsync_queries.png -------------------------------------------------------------------------------- /workshop-content/static/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/architecture.png -------------------------------------------------------------------------------- /workshop-content/static/images/c9_force_update_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/c9_force_update_credentials.png -------------------------------------------------------------------------------- /workshop-content/static/images/c9_new_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/c9_new_terminal.png -------------------------------------------------------------------------------- /workshop-content/static/images/c9after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/c9after.png -------------------------------------------------------------------------------- /workshop-content/static/images/c9before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/c9before.png -------------------------------------------------------------------------------- /workshop-content/static/images/cf_find_auth_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/cf_find_auth_role.png -------------------------------------------------------------------------------- /workshop-content/static/images/create_labeledphotos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/create_labeledphotos.png -------------------------------------------------------------------------------- /workshop-content/static/images/dynamo_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/dynamo_index.png -------------------------------------------------------------------------------- /workshop-content/static/images/dynamo_photo_table_arn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/dynamo_photo_table_arn.png -------------------------------------------------------------------------------- /workshop-content/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/favicon.png -------------------------------------------------------------------------------- /workshop-content/static/images/getAlbum_responseMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/getAlbum_responseMapping.png -------------------------------------------------------------------------------- /workshop-content/static/images/iam-1-create-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/iam-1-create-user.png -------------------------------------------------------------------------------- /workshop-content/static/images/iam-2-attach-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/iam-2-attach-policy.png -------------------------------------------------------------------------------- /workshop-content/static/images/iam-3-create-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/iam-3-create-user.png -------------------------------------------------------------------------------- /workshop-content/static/images/iam-4-save-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/iam-4-save-url.png -------------------------------------------------------------------------------- /workshop-content/static/images/lambda_s3_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/lambda_s3_step1.png -------------------------------------------------------------------------------- /workshop-content/static/images/lambda_s3_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/lambda_s3_step2.png -------------------------------------------------------------------------------- /workshop-content/static/images/meet_sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/meet_sam.png -------------------------------------------------------------------------------- /workshop-content/static/images/photo_table_datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/photo_table_datasource.png -------------------------------------------------------------------------------- /workshop-content/static/images/pinpoint_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/pinpoint_dashboard.png -------------------------------------------------------------------------------- /workshop-content/static/images/pinpoint_demographics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/pinpoint_demographics.png -------------------------------------------------------------------------------- /workshop-content/static/images/pinpoint_endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/pinpoint_endpoints.png -------------------------------------------------------------------------------- /workshop-content/static/images/pop_browser_new_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/pop_browser_new_window.png -------------------------------------------------------------------------------- /workshop-content/static/images/preview_running_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/preview_running_application.png -------------------------------------------------------------------------------- /workshop-content/static/images/sam_init_cleanup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/images/sam_init_cleanup.png -------------------------------------------------------------------------------- /workshop-content/static/js/diff2html-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/diff2html-ui.min.js -------------------------------------------------------------------------------- /workshop-content/static/js/diff2html.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/diff2html.min.js -------------------------------------------------------------------------------- /workshop-content/static/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/jquery-ui.js -------------------------------------------------------------------------------- /workshop-content/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /workshop-content/static/js/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/learn.js -------------------------------------------------------------------------------- /workshop-content/static/js/shortbreadv1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/shortbreadv1.js -------------------------------------------------------------------------------- /workshop-content/static/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/static/js/tabs.js -------------------------------------------------------------------------------- /workshop-content/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/.DS_Store -------------------------------------------------------------------------------- /workshop-content/themes/learn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/.gitignore -------------------------------------------------------------------------------- /workshop-content/themes/learn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/LICENSE.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/README.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/archetypes/chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/archetypes/chapter.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/archetypes/default.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/LICENSE.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/config.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/configuration/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/configuration/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/configuration/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/configuration/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/installation/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/installation/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/installation/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/installation/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/installation/images/chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/installation/images/chapter.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/requirements/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/requirements/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/requirements/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/requirements/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/requirements/images/magic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/requirements/images/magic.gif -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/style-customization/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/style-customization/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/style-customization/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/style-customization/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/blue-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/blue-variant.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/green-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/green-variant.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/red-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/basics/style-customization/images/red-variant.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/archetypes.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/archetypes.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/archetypes.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/archetypes.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/i18n/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/i18n/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/i18n/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/i18n/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/i18n/images/i18n-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/i18n/images/i18n-menu.gif -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/markdown.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/markdown.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/markdown.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/markdown.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/menushortcuts.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/menushortcuts.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/menushortcuts.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/menushortcuts.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/pages/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/pages/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/pages/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/pages/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/pages/images/frontmatter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/pages/images/frontmatter-icon.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/pages/images/pages-chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/pages/images/pages-chapter.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/cont/pages/images/pages-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/cont/pages/images/pages-default.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/credits.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/credits.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/credits.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/credits.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/attachments.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/button.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/button.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/button.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/button.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/test.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/test.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/children/test.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/children/test.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/expand.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/expand.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/expand.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/expand.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/mermaid.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/mermaid.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/mermaid.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/mermaid.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/notice.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/notice.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/notice.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/notice.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/siteparam.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/siteparam.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/shortcodes/siteparam.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/shortcodes/siteparam.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/showcase.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/showcase.en.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/content/showcase.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/content/showcase.fr.md -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/layouts/partials/logo.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/layouts/shortcodes/ghcontributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/layouts/shortcodes/ghcontributors.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/css/theme-mine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/css/theme-mine.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/fonts/monogramos-webfont.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/exampleSite/static/images/showcase/tat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/exampleSite/static/images/showcase/tat.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/i18n/en.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/i18n/es.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/i18n/fr.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/i18n/pt.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/images/screenshot.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/images/tn.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/404.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/_default/list.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/_default/single.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/index.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/index.json -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/custom-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/custom-comments.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/custom-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/custom-header.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/favicon.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/footer.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/header.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/logo.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/menu.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/meta.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/search.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/partials/toc.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/attachments.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/children.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/expand.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/notice.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/ref.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/relref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/relref.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/layouts/shortcodes/siteparam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/layouts/shortcodes/siteparam.html -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/auto-complete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/auto-complete.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/featherlight.min.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/hugo-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/hugo-theme.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/hybrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/hybrid.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/nucleus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/nucleus.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/perfect-scrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/perfect-scrollbar.min.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/theme-blue.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/theme-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/theme-green.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/theme-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/theme-red.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/css/theme.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Inconsolata.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Inconsolata.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Inconsolata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Inconsolata.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_200.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_200.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_200.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_200.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_200.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_300.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_300.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_300.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_300.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_300.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_500.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_500.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_500.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_500.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/Work_Sans_500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/Work_Sans_500.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/images/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/images/clippy.svg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/images/favicon.png -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/images/gopher-404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/images/gopher-404.jpg -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/auto-complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/auto-complete.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/clipboard.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/featherlight.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/highlight.pack.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/hugo-learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/hugo-learn.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/jquery-2.x.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/jquery-2.x.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/jquery.sticky.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/learn.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/lunr.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/modernizr.custom.71422.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/modernizr.custom.71422.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/perfect-scrollbar.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/perfect-scrollbar.jquery.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/perfect-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/perfect-scrollbar.min.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/js/search.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/mermaid/mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/mermaid/mermaid.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/mermaid/mermaid.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/mermaid/mermaid.dark.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/mermaid/mermaid.forest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/mermaid/mermaid.forest.css -------------------------------------------------------------------------------- /workshop-content/themes/learn/static/mermaid/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/static/mermaid/mermaid.js -------------------------------------------------------------------------------- /workshop-content/themes/learn/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/theme.toml -------------------------------------------------------------------------------- /workshop-content/themes/learn/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/amplify-photo-gallery-workshop/HEAD/workshop-content/themes/learn/wercker.yml --------------------------------------------------------------------------------