orcinus-search/example.php
Brian Huisman dee454cb8c Update Bootstrap and jQuery
Bootstrap => v5.3.2
jQuery => v3.7.1
2023-09-28 11:37:46 -04:00

29 lines
797 B
PHP

<?php
// Include the 'search.php' file before any HTML content
require 'orcinus/search.php';
?><!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orcinus Site Search - Online example</title>
<!-- Include the default stylesheet, or create your own -->
<link rel="stylesheet" href="orcinus/css/search.css">
</head>
<body>
<h1>Orcinus Site Search - Online example</h1>
<?php
// Place this command where your search results should appear
$_ORCINUS->render(); ?>
<!-- Script files below are only required for Typeahead -->
<script src="orcinus/js/jquery.min.js"></script>
<script src="orcinus/js/typeahead.bundle.min.js"></script>
<script src="orcinus/js/search.js"></script>
</body>
</html>