Skip to content

Commit e9f02ba

Browse files
committed
fix lint issues
1 parent f4101c1 commit e9f02ba

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cms/themes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,22 +355,22 @@ This approach allows you to:
355355
- Update the parent theme and have changes cascade to all child themes automatically
356356
- Store tenant-specific customizations in the database while sharing a common codebase
357357

358-
**Example: Creating a virtual child theme**
358+
**Example:** Creating a virtual child theme
359359

360360
1. Enable database templates in `config/cms.php`:
361361

362362
```php
363363
'databaseTemplates' => true,
364364
```
365365

366-
2. Create a theme record in the database with just the `theme.yaml` content:
366+
1. Create a theme record in the database with just the `theme.yaml` content:
367367

368368
```yaml
369369
name: "Client A Custom Theme"
370370
parent: base-theme
371371
```
372372

373-
3. Customize only the templates that need to differ from the parent by saving them to the database
373+
1. Customize only the templates that need to differ from the parent by saving them to the database
374374

375375
The child theme will now function without any physical directory, inheriting everything from `themes/base-theme` except for the database-stored customizations.
376376

0 commit comments

Comments
 (0)