You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/templates/sections.md
+14-2
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ title: Sections
7
7
Sections
8
8
========
9
9
10
-
The `start()` and `stop()` functions allow you to build sections (or blocks) of content within your template, and instead of them being rendered directly, they are saved for use elsewhere. For example, in your [layout](/templates/layouts/) template.
10
+
The `start()` and `stop` functions allow you to build sections (or blocks) of content within your template, and instead of them being rendered directly, they are saved for use elsewhere. For example, in your [layout](/templates/layouts/) template.
11
11
12
12
## Creating sections
13
13
14
-
You define the name of the section in the `start()` function, and end the section with the `stop()` function.
14
+
You define the name of the section with the `start()` function. To end a section call the `stop()` function.
15
15
16
16
~~~php
17
17
<?php $this->start('welcome') ?>
@@ -22,6 +22,18 @@ You define the name of the section in the `start()` function, and end the sectio
22
22
<?php $this->stop() ?>
23
23
~~~
24
24
25
+
## Stacking section content
26
+
27
+
By default, when you render a section its content will overwrite any existing content for that section. However, it's possible to append (or stack) the content instead using the `push()` method. This can be useful for specifying any JavaScript libraries required by your child views.
28
+
29
+
~~~php
30
+
<?php $this->push('scripts') ?>
31
+
<scriptsrc="example.js"></script>
32
+
<?php $this->end() ?>
33
+
~~~
34
+
35
+
<pclass="message-notice">The <code>end()</code> function is simply an alias of <code>stop()</code>. These functions can be used interchangeably.</p>
36
+
25
37
## Accessing section content
26
38
27
39
Access rendered section content using the name you assigned in the `start()` method. This variable can be accessed from the current template and layout templates using the `section()` function.
0 commit comments