42 lines
950 B
HTML
42 lines
950 B
HTML
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer text-center">
|
|
<div class="container">
|
|
<div class="row">
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
<script src="@{/static/vendor/jquery/jquery.min.js}"></script>
|
|
<script src="@{/static/vendor/bootstrap/js/bootstrap.bundle.min.js}"></script>
|
|
|
|
<!-- Plugin JavaScript -->
|
|
<script src="@{/static/vendor/jquery-ui/jquery-ui-1.12.1.js}"></script>
|
|
<script src="@{/static/vendor/jquery-easing/jquery.easing.min.js}"></script>
|
|
<script src="@{/static/vendor/magnific-popup/jquery.magnific-popup.min.js}"></script>
|
|
|
|
<!-- Custom scripts for this template -->
|
|
<script src="@{/static/freelancer.min.js}"></script>
|
|
|
|
<script>
|
|
$( "#search" ).autocomplete({
|
|
source: "@{/search}",
|
|
minLength: 2,
|
|
select: function( event, ui ) {
|
|
location.href = "@{/docs/}" + ui.item.value;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|