1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<!DOCTYPE html>
<html lang="###-PASDOC-LANGUAGE-###">
<head>
<title>Search Results</title>
###-PASDOC-HEAD-###
</head>
<body>
###-PASDOC-BODY-BEGIN-###
<h1>Search results</h1>
<div id="tipue_search_content"></div>
###-PASDOC-BODY-END-###
<!--
Note that we use a local jquery copy (not from Google Hosted Libraries),
to work offline.
-->
<script type="text/javascript" src="tipuesearch/jquery.min.js"></script>
<script type="text/javascript" src="tipuesearch/tipuesearch_content.js"></script>
<script type="text/javascript" src="tipuesearch/tipuesearch_set.js"></script>
<script type="text/javascript" src="tipuesearch/tipuesearch.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#tipue_search_input').tipuesearch({
/* 10 items to display seems standard */
'show': 10,
/* For PasDoc docs, showing urls is not very useful,
since the page title already shows the unit and identifier. */
'showURL': false
});
});
</script>
</body>
</html>
|