Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

Blade

Blade - Template language

< >

Blade is a template language created in 2011.

#982on PLDB 12Years Old 201Users
1Books 0Papers 41kRepos


Example from the web:
<!-- Stored in resources/views/layouts/app.blade.php --> <html> <head> <title>App Name - @yield('title')</title> </head> <body> @section('sidebar') This is the master sidebar. @show <div class="container"> @yield('content') </div> </body> </html>
Example from Linguist:
<!DOCTYPE html> <html> <head> <title>@yield('title', 'We love GitHub')</title> @stack('scripts') @stack('styles') </head> <body> @include('partials.nav') @yield('content') <ul> @foreach($foo as $bar) <li>{{ $bar }}</li> @endforeach </ul> {!! $raw_content !!} </body> </html>

Books about Blade from ISBNdb

title authors year publisher
Blade Runner: Origins Vol. 3: Burning (Blade Runner, 3) Perkins, K and Brown, Mellow 2022 Titan Comics
hobbes.html 路 blade.html 路 pasukon.html

View source

- Build the next great programming language Search Day 214 About Blog Acknowledgements Traffic Traffic Today GitHub feedback@pldb.com