Svilen Markov 6 mesi fa
parent
commit
b301953249
1 ha cambiato i file con 5 aggiunte e 5 eliminazioni
  1. 5 5
      docs/configuration.md

+ 5 - 5
docs/configuration.md

@@ -97,9 +97,9 @@ Including config files from within your main config file is supported. This is d
 
 
 ```yaml
 ```yaml
 pages:
 pages:
-  !include home.yml
-  !include videos.yml
-  !include homelab.yml
+  !include: home.yml
+  !include: videos.yml
+  !include: homelab.yml
 ```
 ```
 
 
 The file you are including should not have any additional indentation, its values should be at the top level and the appropriate amount of indentation will be added automatically depending on where the file is included. Example:
 The file you are including should not have any additional indentation, its values should be at the top level and the appropriate amount of indentation will be added automatically depending on where the file is included. Example:
@@ -112,14 +112,14 @@ pages:
     columns:
     columns:
       - size: full
       - size: full
         widgets:
         widgets:
-          !include rss.yml
+          !include: rss.yml
   - name: News
   - name: News
     columns:
     columns:
       - size: full
       - size: full
         widgets:
         widgets:
           - type: group
           - type: group
             widgets:
             widgets:
-              !include rss.yml
+              !include: rss.yml
               - type: reddit
               - type: reddit
                 subreddit: news
                 subreddit: news
 ```
 ```