摘要:// base.blade.php 基礎模板 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> &nb
// base.blade.php 基礎模板 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>布局模板</title> <style> .header,.footer{width: 100%;height: 60px;background: skyblue;text-align: center;line-height: 60px;} .main{overflow: hidden;min-height: 600px;width: 90%;margin: 5px auto;} .main .sider{ float: left; width: 30%; min-height: inherit; background: lightgreen; } .main .content{ float: right; width: 70%; min-height: inherit; background: wheat; } </style> </head> <body> <div class="header"> @section('nav') <a href="#">首頁</a> <a href="#">公司新聞</a> <a href="#">快捷資訊</a> @show </div> <div class="main"> <div class="sider"> @yield('ads','廣告招商:13388669988') </div> <div class="content"> @section('content') <h2>網(wǎng)站上線通知</h2> <p>新網(wǎng)站更新內容,快樂體驗吧!</p> @show </div> </div> <div class="footer"> @section('footer') php.cn版權所有 @show </div> </body> </html> // 視圖模板,繼承base.blade.php {{-- 繼承模板 --}} @extends('home.base') @section('nav') @parent <a href="#">加入我們</a> <a href="#">關于我們</a> @stop @include('home.inc.abs') @section('content') {{-- 繼承 --}} @parent <h1>更多新功能等你使用哦</h1> @stop @section('footer') @parent <a href="#">粵ICP備案號:20190516</a> @stop
批改老師:查無此人批改時間:2019-05-16 09:33:15
老師總結:完成的不錯。常用的css樣式,可以單獨寫一個公用文件。繼續(xù)加油。