© = date_i18n( 'Y' ); ?> . All rights reserved.
**Explanation of the markup**
1. **`wp:group`** – creates a full‑width container (`align:”full”`) and applies the theme’s background color palette entry `”base”` (you can rename the color in `theme.json` if needed).
2. **`wp:paragraph`** – contains the copyright line, centered and using the “small” font size preset.
3. The `= date_i18n( 'Y' ); ?>` and `` snippets are *inline PHP* that WordPress will process even inside a block template because the editor treats it as a “dynamic” fragment. If you prefer a pure‑HTML approach, replace them with static text (e.g., `2026 My Store`).
> **Note:** The rest of the theme ( `style.css`, `theme.json`, templates, functions.php, WooCommerce support, etc.) should be created according to the block‑theme guidelines. The above `footer.html` file can be placed directly under `my-woo-block-theme/parts/` and will be referenced from your templates with `[block rendering halted]`.