Files
librenms-librenms/resources/views/layouts/install.blade.php

21 lines
768 B
PHP
Raw Normal View History

2020-06-05 14:26:57 -05:00
<!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>