@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | // However it will NOT delete the .jpg file on your file server. |
67 | 67 | // I recommend that you only change the enabled field before any images have been uploaded! |
68 | 68 | |
69 | - 'image_large' => [ // this key must start with 'image_'. This is what the DB column must be named |
|
69 | + 'image_large' => [// this key must start with 'image_'. This is what the DB column must be named |
|
70 | 70 | // width in pixels |
71 | 71 | 'w' => 1000, |
72 | 72 | //height |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | // if true then we will crop and resize to exactly w/h. If false then it will maintain proportions, with a max width of 'w' and max height of 'h' |
81 | 81 | 'crop' => true, |
82 | 82 | ], |
83 | - 'image_medium' => [ // this key must start with 'image_'. This is what the DB column must be named |
|
83 | + 'image_medium' => [// this key must start with 'image_'. This is what the DB column must be named |
|
84 | 84 | // width in pixels |
85 | 85 | 'w' => 600, |
86 | 86 | //height |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | // if true then we will crop and resize to exactly w/h. If false then it will maintain proportions, with a max width of 'w' and max height of 'h'. If you use these images as part of your website template then you should probably have this to true. |
95 | 95 | 'crop' => true, |
96 | 96 | ], |
97 | - 'image_thumbnail' => [ // this key must start with 'image_'. This is what the DB column must be named |
|
97 | + 'image_thumbnail' => [// this key must start with 'image_'. This is what the DB column must be named |
|
98 | 98 | 'w' => 150, // width in pixels |
99 | 99 | 'h' => 150, //height |
100 | 100 | 'basic_key' => 'thumbnail', // same as the main key, but WITHOUT 'image_'. |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | 'rssfeed' => [ |
141 | 141 | 'should_shorten_text' => true, // boolean. Default: true. Should we shorten the text in rss feed? |
142 | 142 | 'text_limit' => 100, // max length of description text in the rss feed |
143 | - 'posts_to_show_in_rss_feed' => 10, // how many posts should we show in the rss feed |
|
143 | + 'posts_to_show_in_rss_feed' => 10, // how many posts should we show in the rss feed |
|
144 | 144 | 'cache_in_minutes' => 60, // how long (in minutes) to cache the RSS blog feed for. |
145 | 145 | 'description' => 'Our blog post RSS feed', //description for the RSS feed |
146 | 146 | 'language' => 'en', // see https://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes |