Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Navigation menu titles can't be set in BladeMatter #383

Closed
caendesilva opened this issue Aug 8, 2022 · 0 comments · Fixed by #384
Closed

Navigation menu titles can't be set in BladeMatter #383

caendesilva opened this issue Aug 8, 2022 · 0 comments · Fixed by #384
Assignees

Comments

@caendesilva
Copy link
Member

caendesilva commented Aug 8, 2022

This is caused in FindsNavigationDataForPage.php where the front matter is only read for Markdown pages.

if ($this->page instanceof AbstractMarkdownPage) {
    if ($this->page->matter('navigation.title') !== null) {
        return $this->page->matter('navigation.title');
    }

    if ($this->page->matter('title') !== null) {
        return $this->page->matter('title');
    }
}
@caendesilva caendesilva self-assigned this Aug 8, 2022
caendesilva added a commit that referenced this issue Aug 8, 2022
…be-set-in-bladematter

Fix #383: Navigation menu titles can't be set in BladeMatter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant