Created
January 24, 2018 10:28
-
-
Save buiquangduc/bd758afda5bea845fb514df3762d4419 to your computer and use it in GitHub Desktop.
Example of partial layout file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header class="banner"> | |
| <div class="container"> | |
| <a class="brand" href="{{ home_url('/') }}">{{ get_bloginfo('name', 'display') }}</a> | |
| <nav class="nav-primary"> | |
| Blade template header. | |
| @if (has_nav_menu('primary_navigation')) | |
| {!! wp_nav_menu(['theme_location' => 'primary_navigation', 'menu_class' => 'nav']) !!} | |
| @endif | |
| </nav> | |
| </div> | |
| </header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment