mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
26 lines
381 B
PHP
26 lines
381 B
PHP
|
<!DOCTYPE HTML>
|
||
|
<html lang="en-US">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
<style>
|
||
|
body, p {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
background-color:#d2d6de;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
padding-top: 10px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
@yield('content')
|
||
|
</body>
|
||
|
</html>
|