59 lines
1.8 KiB
PHTML
59 lines
1.8 KiB
PHTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="LEAN console environment">
|
|
<meta name="author" content="Dave Mc Nicoll">
|
|
<meta name="msapplication-TileColor" content="#ccc">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Ctext%20x='0'%20y='14'%3E🔳%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
|
|
|
|
<title>{{ title() }}</title>
|
|
|
|
<link rel="stylesheet" href='{% asset "lean-console/lean-console-bw.css" %}'>
|
|
|
|
<style>
|
|
|
|
{# include "lean-console/lean-console-bw.css" #}
|
|
</style>
|
|
|
|
{% section "head" %}{% endsection %}
|
|
</head>
|
|
|
|
<body>
|
|
<main id="body-main">
|
|
{% section "nav" %}
|
|
{% view "lean-console/base/console/main-nav" %}
|
|
{% endsection %}
|
|
|
|
<div id="right-panel">
|
|
<header id="body-header">
|
|
{% section "header" %}{% endsection %}
|
|
</header>
|
|
|
|
<div id="subheader">
|
|
<h1>{% section "subheader" %}{% _ "page-title" %}{% endsection %}</h1>
|
|
{% section "breadcrumb" %}
|
|
<ul class="breadcrumb">
|
|
<li class="breadcrumb-item">Console</li>
|
|
{% section "breadcrumb-items" %}{% endsection %}
|
|
</ul>
|
|
{% endsection %}
|
|
</div>
|
|
|
|
<section id="main-content">
|
|
{% section "content" %}{% endsection %}
|
|
</section>
|
|
</div>
|
|
</main>
|
|
|
|
<footer id="body-footer">
|
|
{% section "footer" %}
|
|
© {{ date('Y') }} - LEAN
|
|
{% endsection %}
|
|
</footer>
|
|
</body>
|
|
</html> |