Carpeta includes
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
class Header {
|
||||
|
||||
public function render() {
|
||||
return '
|
||||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
|
||||
<link rel="stylesheet" href="libs/bootstrap/css/bootstrap.min.css">
|
||||
|
||||
<!-- Datatables CSS -->
|
||||
|
||||
<link rel="stylesheet" href="libs/datatables/css/dataTables.bootstrap5.min.css">
|
||||
|
||||
<!-- Fontawesome CSS -->
|
||||
|
||||
<link rel="stylesheet" href="libs/fontawesome/css/all.min.css">
|
||||
|
||||
<!-- Estilos propios -->
|
||||
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
|
||||
<title>ByteCenter</title>
|
||||
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
|
||||
<body class="min-vh-100 d-flex flex-column">
|
||||
|
||||
<div id="page-loader">
|
||||
<div class="spinner"></div>
|
||||
</div>';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user