Insert JS

This commit is contained in:
Mesin Kasir 2023-03-09 05:06:09 +07:00 committed by GitHub
parent b88eac122c
commit 4bdd128fc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,17 +12,15 @@
<meta name="generator" content="Bludit"> <meta name="generator" content="Bludit">
</head> </head>
<body> <body>
<?php Theme::plugins('siteBodyBegin'); ?> <?php Theme::plugins('siteBodyBegin'); ?>
<?php include(THEME_DIR_PHP.'navbar.php'); ?> <?php include(THEME_DIR_PHP.'navbar.php'); ?>
<?php <?php if ($WHERE_AM_I == 'page') {
if ($WHERE_AM_I == 'page') { include(THEME_DIR_PHP.'page.php');
include(THEME_DIR_PHP.'page.php'); } else {
} else { include(THEME_DIR_PHP.'home.php');
include(THEME_DIR_PHP.'home.php'); } ?>
} php include(THEME_DIR_PHP.'footer.php'); ?>
?> <?php Theme::plugins('siteBodyEnd'); ?>
<?php include(THEME_DIR_PHP.'footer.php'); ?> <?php echo Theme::js('js/bs.js'); ?>
<?php Theme::plugins('siteBodyEnd'); ?> </body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html> </html>