File tree Expand file tree Collapse file tree
docs/content/documentation/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ pub struct SerializingSection<'a> {
161161 translations : Vec < TranslatedContent < ' a > > ,
162162 backlinks : Vec < BackLink < ' a > > ,
163163 generate_feed : bool ,
164+ transparent : bool ,
164165}
165166
166167#[ derive( Debug ) ]
@@ -220,6 +221,7 @@ impl<'a> SerializingSection<'a> {
220221 assets : & section. serialized_assets ,
221222 lang : & section. lang ,
222223 generate_feed : section. meta . generate_feed ,
224+ transparent : section. meta . transparent ,
223225 pages,
224226 subsections,
225227 translations,
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ translations: Array<TranslatedContent>;
110110backlinks : Array < {permalink : String , title : String ? }> ;
111111// Whether this section generates a feed or not. Taken from the front-matter if set
112112generate_feed : bool ;
113+ // Whether this section is transparent. Taken from the front-matter if set
114+ transparent : bool ;
113115` ` `
114116
115117## Table of contents
You can’t perform that action at this time.
0 commit comments