20 lines
No EOL
435 B
Cheetah
20 lines
No EOL
435 B
Cheetah
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>My Layout</title>
|
|
<link href="/static/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
NAV
|
|
</div>
|
|
<div class="col-md-9"> {{ yield }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |