我的刀片模板无法在我的 laravel 5 上运行,我刚刚安装了 laravel 5.1,然后当我输入 @yield() 或 @extends() 之类的代码时,文本没有颜色,它只是像一些常规文本一样纯白色,我我做错了吗?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
@yield('') "its color is white, looks like just plain text"
</body>
</html>
//Dont mind this, i used this bcoz i have errors submitting this
width: 100%;
display: table;
font-weight: 100;
font-family: 'Lato';
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 96px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Laravel 5</div>
</div>
</div>
</body>