22 lines
740 B
PHP
22 lines
740 B
PHP
</div>
|
|
</main>
|
|
|
|
<footer class="container text-center py-4">
|
|
<small>© <?php echo date('Y'); ?> RailGaadi. All Rights Reserved.</small>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
<?php
|
|
// Page specific javascript
|
|
if (isset($_GET['page'])) {
|
|
$page_js = 'assets/js/' . str_replace('-', '_', $_GET['page']) . '.js';
|
|
if (file_exists($page_js)) {
|
|
echo '<script src="' . $page_js . '?v='.time().'"></script>';
|
|
}
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|