Skip to content

Instantly share code, notes, and snippets.

@vihugarcia
Created July 9, 2023 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vihugarcia/585639c2a9837e3a6196afa94a9551f5 to your computer and use it in GitHub Desktop.
Save vihugarcia/585639c2a9837e3a6196afa94a9551f5 to your computer and use it in GitHub Desktop.
Chapter 7 main.php
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="<?= SITE_BASE ?>css/main.css">
<link rel="stylesheet" href="//cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<title>SimpleMVC</title>
</head>
<body>
<?= $content ?>
<script src="//cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
<script type="text/javascript">
<?= $scripts; ?>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment