Which Liquid tags are required in a valid Shopify layout file? 📄
### Explanation
Every Shopify layout file (like `theme.liquid`) must include two specific Liquid tags in the correct locations:
1. `{{ content_for_header }}` must be in the ``:
- Injects required Shopify scripts
- Includes Google Analytics
- Adds Shopify analytics
- Loads app scripts
- Required for theme validation
2. `{{ content_for_layout }}` must be in the ``:
- Outputs content from other templates
- Renders page-specific content
- Displays sections and blocks
- Required for theme validation
Example of a minimal valid layout:
```liquid
{{ content_for_header }}
{{ content_for_layout }}
```
Without these tags in the correct locations, Shopify will not validate the theme.
Reference: [Shopify Theme Templates](https://shopify.dev/themes/architecture/templates)
Answer Options:
- {{ content_for_header }} in <head>
{{ content_for_layout }} in <body>
- {{ content_for_head }} in <head>
{{ content_for_body }} in <body>
- {{ header_content }} in <head>
{{ layout_content }} in <body>
- {{ content_for_header }} in <body>
{{ content_for_layout }} in <head>