Create menu structure

Created on 14 January 2025, about 1 month ago

Problem/Motivation

The demo content should be organised in a sensible menu

📌 Task
Status

Active

Version

0.0

Component

Code

Created by

🇩🇪Germany breidert

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @breidert
  • 🇩🇪Germany breidert

    Here is a screen recording of the current status: https://www.drupal.org/files/issues/2025-01-14/screen-capture-drupal-cms...

    When testing you might want to delete the content that comes with individual recipes fiest:

    #!/bin/bash
    
    # Define the recipes to delete content from
    recipes=("drupal_cms_blog" "drupal_cms_case_study" "drupal_cms_events" "drupal_cms_news" "drupal_cms_person" "drupal_cms_project")
    
    # Find all directories matching the pattern recipes/*/content
    for folder in recipes/*/content; do
      for recipe in "${recipes[@]}"; do
        if [[ "$folder" == *"$recipe"* ]]; then
          echo "Deleting folder: $folder"
          rm -rf "$folder"
          break
        fi
      done
    
Production build 0.71.5 2024