Open Krojack opened 1 week ago
Currently in Home Assistant you can include other YML files to help keep things somewhat clean.
Small example:
pages: - name: Home columns: - size: small widgets: !include page-1-widgets-left.yml - size: full widgets: !include page-1-widgets-middle.yml - size: small widgets: !include page-1-widgets-right.yml - name: Bookmarks columns: - size: small widgets: !include page-2-widgets-left.yml - size: full widgets: !include page-2-widgets-middle.yml - size: small widgets: !include page-2-widgets-right.yml
This would then load the contents of page-1-widgets-left.yml in that spot.
Rather than have everything in one large file, you could break things down into separate files.
Hey, thanks for the suggestion!
The syntax likely won't be the same and there may be some quirks but I can add something like this for the next release.
Currently in Home Assistant you can include other YML files to help keep things somewhat clean.
Small example:
This would then load the contents of page-1-widgets-left.yml in that spot.
Rather than have everything in one large file, you could break things down into separate files.