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
I don't now if this is related with #47
I have partials to reuse some templates. For example:
<?php//define the main layout$this->layout('main');
//use some partialsif ($post) {
$this->insert('post', ['post' => $post]);
}
//define some sections$this->start('title');
echo'This is a title';
$this->stop();
?>
In the "post" partial, I have something like this:
I don't now if this is related with #47
I have partials to reuse some templates. For example:
In the "post" partial, I have something like this:
And now, in the main template, the first section is printed but the one defined in the partial doesn't:
The text was updated successfully, but these errors were encountered: