├── .gitignore ├── README.md ├── astrojs ├── .gitignore ├── .vscode │ ├── extensions.json │ └── launch.json ├── README.md ├── astro.config.mjs ├── example.env ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── favicon.svg ├── src │ ├── api │ │ └── drupal.ts │ ├── components │ │ ├── ArticleCard.astro │ │ ├── Badge.astro │ │ ├── Breadcrumbs.astro │ │ ├── Card.astro │ │ ├── ContactUsForm.tsx │ │ ├── ExploreRecipeCard.astro │ │ ├── ExploreRecipes.astro │ │ ├── FooterDisclaimer.astro │ │ ├── FooterPromo.astro │ │ ├── Header.astro │ │ ├── HeaderMenu.astro │ │ ├── HomePageBanner.astro │ │ ├── HomePagePromotedItems.astro │ │ ├── HomePagePromotedRecipes.astro │ │ ├── Logo.astro │ │ ├── RecipeCard.astro │ │ ├── RecipeCardPromoted.astro │ │ ├── RecipeCardTeaser.astro │ │ ├── RecipesBanner.astro │ │ ├── RecipesCollection.astro │ │ └── TermList.astro │ ├── env.d.ts │ ├── layouts │ │ └── Layout.astro │ ├── pages │ │ ├── 404.astro │ │ ├── [...slug].astro │ │ ├── articles │ │ │ ├── [...page].astro │ │ │ └── [article].astro │ │ ├── contact-us.astro │ │ ├── index.astro │ │ └── recipes │ │ │ ├── [...page].astro │ │ │ └── [recipe].astro │ ├── styles │ │ └── global.css │ └── types.ts ├── tailwind.config.js └── tsconfig.json └── drupal-umami ├── .ddev └── config.yaml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── 20240118.sql ├── composer.json ├── composer.lock └── web └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/README.md -------------------------------------------------------------------------------- /astrojs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/.gitignore -------------------------------------------------------------------------------- /astrojs/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/.vscode/extensions.json -------------------------------------------------------------------------------- /astrojs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/.vscode/launch.json -------------------------------------------------------------------------------- /astrojs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/README.md -------------------------------------------------------------------------------- /astrojs/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/astro.config.mjs -------------------------------------------------------------------------------- /astrojs/example.env: -------------------------------------------------------------------------------- 1 | DRUPAL_BASE_URL=http://drupal-umami.ddev.site -------------------------------------------------------------------------------- /astrojs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/package-lock.json -------------------------------------------------------------------------------- /astrojs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/package.json -------------------------------------------------------------------------------- /astrojs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/postcss.config.js -------------------------------------------------------------------------------- /astrojs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/public/favicon.svg -------------------------------------------------------------------------------- /astrojs/src/api/drupal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/api/drupal.ts -------------------------------------------------------------------------------- /astrojs/src/components/ArticleCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/ArticleCard.astro -------------------------------------------------------------------------------- /astrojs/src/components/Badge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/Badge.astro -------------------------------------------------------------------------------- /astrojs/src/components/Breadcrumbs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/Breadcrumbs.astro -------------------------------------------------------------------------------- /astrojs/src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/Card.astro -------------------------------------------------------------------------------- /astrojs/src/components/ContactUsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/ContactUsForm.tsx -------------------------------------------------------------------------------- /astrojs/src/components/ExploreRecipeCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/ExploreRecipeCard.astro -------------------------------------------------------------------------------- /astrojs/src/components/ExploreRecipes.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/ExploreRecipes.astro -------------------------------------------------------------------------------- /astrojs/src/components/FooterDisclaimer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/FooterDisclaimer.astro -------------------------------------------------------------------------------- /astrojs/src/components/FooterPromo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/FooterPromo.astro -------------------------------------------------------------------------------- /astrojs/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/Header.astro -------------------------------------------------------------------------------- /astrojs/src/components/HeaderMenu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/HeaderMenu.astro -------------------------------------------------------------------------------- /astrojs/src/components/HomePageBanner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/HomePageBanner.astro -------------------------------------------------------------------------------- /astrojs/src/components/HomePagePromotedItems.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/HomePagePromotedItems.astro -------------------------------------------------------------------------------- /astrojs/src/components/HomePagePromotedRecipes.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/HomePagePromotedRecipes.astro -------------------------------------------------------------------------------- /astrojs/src/components/Logo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/Logo.astro -------------------------------------------------------------------------------- /astrojs/src/components/RecipeCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/RecipeCard.astro -------------------------------------------------------------------------------- /astrojs/src/components/RecipeCardPromoted.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/RecipeCardPromoted.astro -------------------------------------------------------------------------------- /astrojs/src/components/RecipeCardTeaser.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/RecipeCardTeaser.astro -------------------------------------------------------------------------------- /astrojs/src/components/RecipesBanner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/RecipesBanner.astro -------------------------------------------------------------------------------- /astrojs/src/components/RecipesCollection.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/RecipesCollection.astro -------------------------------------------------------------------------------- /astrojs/src/components/TermList.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/components/TermList.astro -------------------------------------------------------------------------------- /astrojs/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /astrojs/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/layouts/Layout.astro -------------------------------------------------------------------------------- /astrojs/src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/404.astro -------------------------------------------------------------------------------- /astrojs/src/pages/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/[...slug].astro -------------------------------------------------------------------------------- /astrojs/src/pages/articles/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/articles/[...page].astro -------------------------------------------------------------------------------- /astrojs/src/pages/articles/[article].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/articles/[article].astro -------------------------------------------------------------------------------- /astrojs/src/pages/contact-us.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/contact-us.astro -------------------------------------------------------------------------------- /astrojs/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/index.astro -------------------------------------------------------------------------------- /astrojs/src/pages/recipes/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/recipes/[...page].astro -------------------------------------------------------------------------------- /astrojs/src/pages/recipes/[recipe].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/pages/recipes/[recipe].astro -------------------------------------------------------------------------------- /astrojs/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/styles/global.css -------------------------------------------------------------------------------- /astrojs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/src/types.ts -------------------------------------------------------------------------------- /astrojs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/tailwind.config.js -------------------------------------------------------------------------------- /astrojs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/astrojs/tsconfig.json -------------------------------------------------------------------------------- /drupal-umami/.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/.ddev/config.yaml -------------------------------------------------------------------------------- /drupal-umami/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/.editorconfig -------------------------------------------------------------------------------- /drupal-umami/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/.gitattributes -------------------------------------------------------------------------------- /drupal-umami/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/.gitignore -------------------------------------------------------------------------------- /drupal-umami/20240118.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/20240118.sql -------------------------------------------------------------------------------- /drupal-umami/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/composer.json -------------------------------------------------------------------------------- /drupal-umami/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/composer.lock -------------------------------------------------------------------------------- /drupal-umami/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincenzoGambino/astrojs-drupal-umami/HEAD/drupal-umami/web/README.md --------------------------------------------------------------------------------