mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
21 lines
768 B
PHP
21 lines
768 B
PHP
|
<!DOCTYPE HTML>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>@lang('install.title')</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
||
|
<link href="{{ asset(Config::get('stylesheet')) }}" rel="stylesheet" type="text/css"/>
|
||
|
<script src="{{ asset('js/jquery.min.js') }}"></script>
|
||
|
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
|
||
|
<script src="{{ asset('js/bootstrap-hover-dropdown.min.js') }}"></script>
|
||
|
<script src="{{ asset('js/hogan-2.0.0.js') }}"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
@yield('content')
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|