├── .ddev ├── config.yaml ├── ddev-docker-compose-communicate.yaml └── docker-compose.mounts.yaml ├── .env ├── .env.dev ├── .env.local.dist ├── .env.prod ├── .env.test ├── .github └── workflows │ └── php.yml ├── .gitignore ├── .phplint.yml ├── README.md ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── assets.yaml │ ├── cache.yaml │ ├── chrisguitarguy_request_id.yaml │ ├── dev │ │ ├── assets.yaml │ │ ├── debug.yaml │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── exercise_html_purifier.yaml │ ├── fos_http_cache.yaml │ ├── framework.yaml │ ├── lock.yaml │ ├── mailer.yaml │ ├── nelmio_cors.yaml │ ├── notifier.yaml │ ├── nyholm_psr7.yaml │ ├── prod │ │ ├── deprecations.yaml │ │ └── monolog.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── strata.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ └── web_profiler.yaml │ ├── translation.yaml │ ├── twig.yaml │ └── validator.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── annotations.yaml │ └── dev │ │ ├── framework.yaml │ │ └── web_profiler.yaml └── services.yaml ├── deploy.php ├── docs ├── README.md ├── adding-languages.md ├── caching.md ├── configuration.md ├── continuous_integration.md ├── front-end-integration │ ├── README.md │ ├── craftcms-graphql.md │ ├── matrix-flexible-components.md │ ├── retrieving-data.md │ ├── routing.md │ ├── templating.md │ └── testing.md ├── git_workflow.md ├── images │ ├── content-field-craft-cms.png │ ├── graphiql_execute_button.png │ ├── matrix-craft-cms.png │ ├── matrix-graphql-explorer.png │ ├── matrix-graphql.png │ └── section-craft-cms.png ├── internationalization.md ├── routing.md └── testing.md ├── phpcs.xml.dist ├── phpunit.xml.dist ├── public ├── favicon.ico └── index.php ├── rector.php ├── src ├── Controller │ ├── .gitignore │ ├── BlogController.php │ ├── DefaultController.php │ ├── EcosystemController.php │ ├── EventsController.php │ ├── FeedController.php │ ├── FragmentsController.php │ ├── NewsController.php │ ├── NewsletterController.php │ ├── PressReleasesController.php │ └── StaffController.php ├── Form │ └── CommentType.php ├── Kernel.php ├── Query │ ├── CraftCMS │ │ ├── Blog │ │ │ ├── Collection.php │ │ │ ├── Comment.php │ │ │ ├── Comments.php │ │ │ ├── CreateComment.php │ │ │ ├── Entry.php │ │ │ ├── Filters.php │ │ │ └── Listing.php │ │ ├── Ecosystems │ │ │ ├── Ecosystem.php │ │ │ ├── RecentActivities.php │ │ │ └── Testimonials.php │ │ ├── Events │ │ │ ├── Entry.php │ │ │ ├── Filters.php │ │ │ ├── Listing.php │ │ │ └── Page.php │ │ ├── Feeds │ │ │ ├── Blog.php │ │ │ ├── Comments.php │ │ │ ├── Events.php │ │ │ ├── News.php │ │ │ ├── PressReleases.php │ │ │ └── Taxonomy.php │ │ ├── GlobalNavigation.php │ │ ├── Home │ │ │ ├── Page.php │ │ │ └── RecentActivities.php │ │ ├── News │ │ │ ├── Collection.php │ │ │ ├── Entry.php │ │ │ ├── Filters.php │ │ │ └── Listing.php │ │ ├── Newsletters │ │ │ ├── Collection.php │ │ │ ├── Entry.php │ │ │ ├── Filters.php │ │ │ └── Listing.php │ │ ├── Page.php │ │ ├── PressReleases │ │ │ ├── Collection.php │ │ │ ├── Entry.php │ │ │ ├── Filters.php │ │ │ └── Listing.php │ │ ├── SinglesBreadcrumbs.php │ │ ├── Staff │ │ │ └── AlumniListing.php │ │ ├── Taxonomies │ │ │ ├── Categories.php │ │ │ ├── CategoryInfo.php │ │ │ ├── GroupInfo.php │ │ │ └── Tags.php │ │ ├── YouMayAlsoLikeRelatedEntries.php │ │ └── graphql │ │ │ ├── blog │ │ │ ├── collection.graphql │ │ │ ├── comment.graphql │ │ │ ├── comments.graphql │ │ │ ├── create-comment.graphql │ │ │ ├── entry.graphql │ │ │ ├── filters.graphql │ │ │ └── listing.graphql │ │ │ ├── ecosystems │ │ │ ├── ecosystem.graphql │ │ │ ├── recent-activities.graphql │ │ │ └── testimonials.graphql │ │ │ ├── events │ │ │ ├── entry.graphql │ │ │ ├── filters.graphql │ │ │ ├── listing.graphql │ │ │ └── page.graphql │ │ │ ├── feeds │ │ │ ├── blog.graphql │ │ │ ├── comments.graphql │ │ │ ├── events.graphql │ │ │ ├── news.graphql │ │ │ ├── press-releases.graphql │ │ │ └── taxonomy.graphql │ │ │ ├── fragments │ │ │ ├── breadcrumbs.graphql │ │ │ ├── contentImage.graphql │ │ │ ├── defaultFlexibleComponents.graphql │ │ │ ├── ecosystemsBottomFlexibleComponents.graphql │ │ │ ├── ecosystemsFlexibleComponents.graphql │ │ │ ├── landingFlexibleComponents.graphql │ │ │ ├── listingEvent.graphql │ │ │ ├── listingExternalEvent.graphql │ │ │ ├── listingPageEvent.graphql │ │ │ └── thumbnailImage.graphql │ │ │ ├── global-navigation.graphql │ │ │ ├── home │ │ │ ├── page.graphql │ │ │ └── recent-activities.graphql │ │ │ ├── news │ │ │ ├── collection.graphql │ │ │ ├── entry.graphql │ │ │ ├── filters.graphql │ │ │ └── listing.graphql │ │ │ ├── newsletters │ │ │ ├── collection.graphql │ │ │ ├── entry.graphql │ │ │ ├── filters.graphql │ │ │ └── listing.graphql │ │ │ ├── page.graphql │ │ │ ├── press-releases │ │ │ ├── collection.graphql │ │ │ ├── entry.graphql │ │ │ ├── filters.graphql │ │ │ └── listing.graphql │ │ │ ├── singles-breadcrumbs.graphql │ │ │ ├── staff │ │ │ └── alumni.graphql │ │ │ ├── taxonomies │ │ │ ├── categories.graphql │ │ │ ├── category-info.graphql │ │ │ ├── group-info.graphql │ │ │ └── tags.graphql │ │ │ └── youMayAlsoLikeRelatedEntries.graphql │ └── W3C │ │ ├── Ecosystem │ │ ├── Bizdev.php │ │ ├── BizdevLead.php │ │ ├── Evangelists.php │ │ ├── Groups.php │ │ └── Members.php │ │ ├── Group.php │ │ ├── Healthcheck.php │ │ └── Home │ │ └── Members.php └── Service │ ├── CraftCMS.php │ ├── FeedHelper.php │ ├── IcalExporter.php │ ├── QueryManagerConfigurator.php │ ├── SiteConfigurator.php │ └── W3C.php ├── symfony.lock ├── templates ├── blog │ ├── index.html.twig │ └── show.html.twig ├── bundles │ └── W3CWebsiteTemplatesBundle │ │ ├── base.html.twig │ │ └── components │ │ └── styles │ │ └── global_nav.html.twig ├── data_collector.html.twig ├── debug │ ├── index.html.twig │ └── test.html.twig ├── ecosystems │ └── show.html.twig ├── events │ ├── index.html.twig │ └── show.html.twig ├── index │ └── index.html.twig ├── news │ ├── index.html.twig │ └── show.html.twig ├── newsletters │ └── index.html.twig ├── pages │ ├── default.html.twig │ ├── home.html.twig │ └── landing.html.twig ├── partials │ ├── defaultFlexibleComponents.html.twig │ ├── ecosystemsFlexibleComponents.html.twig │ └── landingFlexibleComponents.html.twig ├── press-releases │ ├── index.html.twig │ └── show.html.twig ├── rss_entry.html.twig ├── staff │ └── alumni.html.twig └── strata-logo.svg ├── tests ├── Controller │ └── DefaultControllerTest.php ├── bootstrap.php ├── symfony-container.php └── urls │ ├── test-urls.php │ └── urls.csv ├── translations ├── .gitignore ├── messages+intl-icu.en.yaml ├── messages+intl-icu.ja.yaml ├── messages+intl-icu.zh-hans.yaml ├── validators+intl-icu.en.yaml ├── validators+intl-icu.ja.yaml └── validators+intl-icu.zh-hans.yaml └── w3c.json /.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.ddev/config.yaml -------------------------------------------------------------------------------- /.ddev/ddev-docker-compose-communicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.ddev/ddev-docker-compose-communicate.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.mounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.ddev/docker-compose.mounts.yaml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.env -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- 1 | ASSETS_WEBSITE_2021=https://www.w3.org/assets/website-2021/ 2 | -------------------------------------------------------------------------------- /.env.local.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.env.local.dist -------------------------------------------------------------------------------- /.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.env.prod -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.env.test -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.phplint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/.phplint.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/assets.yaml -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/chrisguitarguy_request_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/chrisguitarguy_request_id.yaml -------------------------------------------------------------------------------- /config/packages/dev/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/assets.yaml -------------------------------------------------------------------------------- /config/packages/dev/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/debug.yaml -------------------------------------------------------------------------------- /config/packages/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/framework.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/exercise_html_purifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/exercise_html_purifier.yaml -------------------------------------------------------------------------------- /config/packages/fos_http_cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/fos_http_cache.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/lock.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | lock: '%env(LOCK_DSN)%' 3 | -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/mailer.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/notifier.yaml -------------------------------------------------------------------------------- /config/packages/nyholm_psr7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/nyholm_psr7.yaml -------------------------------------------------------------------------------- /config/packages/prod/deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/prod/deprecations.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/strata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/strata.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /config/packages/test/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/test/validator.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/preload.php -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/routes/dev/framework.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/config/services.yaml -------------------------------------------------------------------------------- /deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/deploy.php -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/adding-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/adding-languages.md -------------------------------------------------------------------------------- /docs/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/caching.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/continuous_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/continuous_integration.md -------------------------------------------------------------------------------- /docs/front-end-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/README.md -------------------------------------------------------------------------------- /docs/front-end-integration/craftcms-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/craftcms-graphql.md -------------------------------------------------------------------------------- /docs/front-end-integration/matrix-flexible-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/matrix-flexible-components.md -------------------------------------------------------------------------------- /docs/front-end-integration/retrieving-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/retrieving-data.md -------------------------------------------------------------------------------- /docs/front-end-integration/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/routing.md -------------------------------------------------------------------------------- /docs/front-end-integration/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/front-end-integration/templating.md -------------------------------------------------------------------------------- /docs/front-end-integration/testing.md: -------------------------------------------------------------------------------- 1 | # Testing 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /docs/git_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/git_workflow.md -------------------------------------------------------------------------------- /docs/images/content-field-craft-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/content-field-craft-cms.png -------------------------------------------------------------------------------- /docs/images/graphiql_execute_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/graphiql_execute_button.png -------------------------------------------------------------------------------- /docs/images/matrix-craft-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/matrix-craft-cms.png -------------------------------------------------------------------------------- /docs/images/matrix-graphql-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/matrix-graphql-explorer.png -------------------------------------------------------------------------------- /docs/images/matrix-graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/matrix-graphql.png -------------------------------------------------------------------------------- /docs/images/section-craft-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/images/section-craft-cms.png -------------------------------------------------------------------------------- /docs/internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/internationalization.md -------------------------------------------------------------------------------- /docs/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/routing.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/docs/testing.md -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/public/index.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/rector.php -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/BlogController.php -------------------------------------------------------------------------------- /src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Controller/EcosystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/EcosystemController.php -------------------------------------------------------------------------------- /src/Controller/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/EventsController.php -------------------------------------------------------------------------------- /src/Controller/FeedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/FeedController.php -------------------------------------------------------------------------------- /src/Controller/FragmentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/FragmentsController.php -------------------------------------------------------------------------------- /src/Controller/NewsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/NewsController.php -------------------------------------------------------------------------------- /src/Controller/NewsletterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/NewsletterController.php -------------------------------------------------------------------------------- /src/Controller/PressReleasesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/PressReleasesController.php -------------------------------------------------------------------------------- /src/Controller/StaffController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Controller/StaffController.php -------------------------------------------------------------------------------- /src/Form/CommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Form/CommentType.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Collection.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Comment.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Comments.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/CreateComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/CreateComment.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Entry.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Filters.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Blog/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Blog/Listing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Ecosystems/Ecosystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Ecosystems/Ecosystem.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Ecosystems/RecentActivities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Ecosystems/RecentActivities.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Ecosystems/Testimonials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Ecosystems/Testimonials.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Events/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Events/Entry.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Events/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Events/Filters.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Events/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Events/Listing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Events/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Events/Page.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/Blog.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/Comments.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/Events.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/News.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/PressReleases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/PressReleases.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Feeds/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Feeds/Taxonomy.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/GlobalNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/GlobalNavigation.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Home/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Home/Page.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Home/RecentActivities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Home/RecentActivities.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/News/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/News/Collection.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/News/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/News/Entry.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/News/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/News/Filters.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/News/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/News/Listing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Newsletters/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Newsletters/Collection.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Newsletters/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Newsletters/Entry.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Newsletters/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Newsletters/Filters.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Newsletters/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Newsletters/Listing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Page.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/PressReleases/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/PressReleases/Collection.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/PressReleases/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/PressReleases/Entry.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/PressReleases/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/PressReleases/Filters.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/PressReleases/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/PressReleases/Listing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/SinglesBreadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/SinglesBreadcrumbs.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Staff/AlumniListing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Staff/AlumniListing.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Taxonomies/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Taxonomies/Categories.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Taxonomies/CategoryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Taxonomies/CategoryInfo.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Taxonomies/GroupInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Taxonomies/GroupInfo.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/Taxonomies/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/Taxonomies/Tags.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/YouMayAlsoLikeRelatedEntries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/YouMayAlsoLikeRelatedEntries.php -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/collection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/collection.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/comment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/comment.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/comments.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/create-comment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/create-comment.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/entry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/entry.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/filters.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/blog/listing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/blog/listing.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/ecosystems/ecosystem.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/ecosystems/ecosystem.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/ecosystems/recent-activities.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/ecosystems/recent-activities.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/ecosystems/testimonials.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/ecosystems/testimonials.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/events/entry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/events/entry.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/events/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/events/filters.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/events/listing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/events/listing.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/events/page.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/events/page.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/blog.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/blog.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/comments.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/events.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/events.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/news.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/news.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/press-releases.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/press-releases.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/feeds/taxonomy.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/feeds/taxonomy.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/breadcrumbs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/breadcrumbs.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/contentImage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/contentImage.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/defaultFlexibleComponents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/defaultFlexibleComponents.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/ecosystemsBottomFlexibleComponents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/ecosystemsBottomFlexibleComponents.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/ecosystemsFlexibleComponents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/ecosystemsFlexibleComponents.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/landingFlexibleComponents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/landingFlexibleComponents.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/listingEvent.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/listingEvent.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/listingExternalEvent.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/listingExternalEvent.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/listingPageEvent.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/listingPageEvent.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/fragments/thumbnailImage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/fragments/thumbnailImage.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/global-navigation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/global-navigation.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/home/page.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/home/page.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/home/recent-activities.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/home/recent-activities.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/news/collection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/news/collection.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/news/entry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/news/entry.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/news/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/news/filters.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/news/listing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/news/listing.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/newsletters/collection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/newsletters/collection.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/newsletters/entry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/newsletters/entry.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/newsletters/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/newsletters/filters.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/newsletters/listing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/newsletters/listing.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/page.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/page.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/press-releases/collection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/press-releases/collection.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/press-releases/entry.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/press-releases/entry.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/press-releases/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/press-releases/filters.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/press-releases/listing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/press-releases/listing.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/singles-breadcrumbs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/singles-breadcrumbs.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/staff/alumni.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/staff/alumni.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/taxonomies/categories.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/taxonomies/categories.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/taxonomies/category-info.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/taxonomies/category-info.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/taxonomies/group-info.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/taxonomies/group-info.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/taxonomies/tags.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/taxonomies/tags.graphql -------------------------------------------------------------------------------- /src/Query/CraftCMS/graphql/youMayAlsoLikeRelatedEntries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/CraftCMS/graphql/youMayAlsoLikeRelatedEntries.graphql -------------------------------------------------------------------------------- /src/Query/W3C/Ecosystem/Bizdev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Ecosystem/Bizdev.php -------------------------------------------------------------------------------- /src/Query/W3C/Ecosystem/BizdevLead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Ecosystem/BizdevLead.php -------------------------------------------------------------------------------- /src/Query/W3C/Ecosystem/Evangelists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Ecosystem/Evangelists.php -------------------------------------------------------------------------------- /src/Query/W3C/Ecosystem/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Ecosystem/Groups.php -------------------------------------------------------------------------------- /src/Query/W3C/Ecosystem/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Ecosystem/Members.php -------------------------------------------------------------------------------- /src/Query/W3C/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Group.php -------------------------------------------------------------------------------- /src/Query/W3C/Healthcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Healthcheck.php -------------------------------------------------------------------------------- /src/Query/W3C/Home/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Query/W3C/Home/Members.php -------------------------------------------------------------------------------- /src/Service/CraftCMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/CraftCMS.php -------------------------------------------------------------------------------- /src/Service/FeedHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/FeedHelper.php -------------------------------------------------------------------------------- /src/Service/IcalExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/IcalExporter.php -------------------------------------------------------------------------------- /src/Service/QueryManagerConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/QueryManagerConfigurator.php -------------------------------------------------------------------------------- /src/Service/SiteConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/SiteConfigurator.php -------------------------------------------------------------------------------- /src/Service/W3C.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/src/Service/W3C.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/blog/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/blog/index.html.twig -------------------------------------------------------------------------------- /templates/blog/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/blog/show.html.twig -------------------------------------------------------------------------------- /templates/bundles/W3CWebsiteTemplatesBundle/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/bundles/W3CWebsiteTemplatesBundle/base.html.twig -------------------------------------------------------------------------------- /templates/bundles/W3CWebsiteTemplatesBundle/components/styles/global_nav.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/bundles/W3CWebsiteTemplatesBundle/components/styles/global_nav.html.twig -------------------------------------------------------------------------------- /templates/data_collector.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/data_collector.html.twig -------------------------------------------------------------------------------- /templates/debug/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/debug/index.html.twig -------------------------------------------------------------------------------- /templates/debug/test.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/debug/test.html.twig -------------------------------------------------------------------------------- /templates/ecosystems/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/ecosystems/show.html.twig -------------------------------------------------------------------------------- /templates/events/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/events/index.html.twig -------------------------------------------------------------------------------- /templates/events/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/events/show.html.twig -------------------------------------------------------------------------------- /templates/index/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/index/index.html.twig -------------------------------------------------------------------------------- /templates/news/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/news/index.html.twig -------------------------------------------------------------------------------- /templates/news/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/news/show.html.twig -------------------------------------------------------------------------------- /templates/newsletters/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/newsletters/index.html.twig -------------------------------------------------------------------------------- /templates/pages/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/pages/default.html.twig -------------------------------------------------------------------------------- /templates/pages/home.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/pages/home.html.twig -------------------------------------------------------------------------------- /templates/pages/landing.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/pages/landing.html.twig -------------------------------------------------------------------------------- /templates/partials/defaultFlexibleComponents.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/partials/defaultFlexibleComponents.html.twig -------------------------------------------------------------------------------- /templates/partials/ecosystemsFlexibleComponents.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/partials/ecosystemsFlexibleComponents.html.twig -------------------------------------------------------------------------------- /templates/partials/landingFlexibleComponents.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/partials/landingFlexibleComponents.html.twig -------------------------------------------------------------------------------- /templates/press-releases/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/press-releases/index.html.twig -------------------------------------------------------------------------------- /templates/press-releases/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/press-releases/show.html.twig -------------------------------------------------------------------------------- /templates/rss_entry.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/rss_entry.html.twig -------------------------------------------------------------------------------- /templates/staff/alumni.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/staff/alumni.html.twig -------------------------------------------------------------------------------- /templates/strata-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/templates/strata-logo.svg -------------------------------------------------------------------------------- /tests/Controller/DefaultControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/tests/Controller/DefaultControllerTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/symfony-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/tests/symfony-container.php -------------------------------------------------------------------------------- /tests/urls/test-urls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/tests/urls/test-urls.php -------------------------------------------------------------------------------- /tests/urls/urls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/tests/urls/urls.csv -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/messages+intl-icu.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/messages+intl-icu.en.yaml -------------------------------------------------------------------------------- /translations/messages+intl-icu.ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/messages+intl-icu.ja.yaml -------------------------------------------------------------------------------- /translations/messages+intl-icu.zh-hans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/messages+intl-icu.zh-hans.yaml -------------------------------------------------------------------------------- /translations/validators+intl-icu.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/validators+intl-icu.en.yaml -------------------------------------------------------------------------------- /translations/validators+intl-icu.ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/validators+intl-icu.ja.yaml -------------------------------------------------------------------------------- /translations/validators+intl-icu.zh-hans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/translations/validators+intl-icu.zh-hans.yaml -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/w3c-website-frontend/HEAD/w3c.json --------------------------------------------------------------------------------