Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created August 17, 2022 17:15
Show Gist options
  • Select an option

  • Save codigoconjuan/a9aa4e0aa7e5079ea3edca7a3a34bc00 to your computer and use it in GitHub Desktop.

Select an option

Save codigoconjuan/a9aa4e0aa7e5079ea3edca7a3a34bc00 to your computer and use it in GitHub Desktop.
Admin Layout DevWebCamp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevWebCamp - <?php echo $titulo; ?></title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/build/css/app.css">
</head>
<body class="dashboard">
<?php
include_once __DIR__ .'/templates/admin-header.php';
?>
<div class="dashboard__grid">
<?php
include_once __DIR__ .'/templates/admin-sidebar.php';
?>
<main class="dashboard__contenido">
<?php
echo $contenido;
?>
</main>
</div>
<script src="/build/js/bundle.min.js" defer></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment