# Call your own css or js
Boilerplate layout comes with two Blade stacks (opens new window): js
and css
.
You can push your assets to these stacks in your blade views:
@push('js')
<script src="/example.js"></script>
<script>
alert('hello')
</script>
@endpush
@push('css')
<link href="/style.css" rel="stylesheet" type="text/css">
<style>
body { background: red }
</style>
@endpush