zeus.ugent.be/content/search.erb

47 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2016-07-31 17:28:23 +00:00
---
title: Search
---
2016-10-04 14:25:03 +00:00
<div class="columns">
<div class="column is-half">
<div class="content">
<h1>Blog results</h1>
</div>
<div id="blog_results"></div>
</div>
<div class="column">
<div class="content">
<h1>Event results</h1>
</div>
<div id="event_results"></div>
</div>
</div>
2017-05-03 23:40:53 +00:00
2018-07-05 09:36:11 +00:00
<% content_for :head do %>
<!-- CSS -->
<!-- TiptueSearch CSS -->
<link rel="stylesheet" href="/assets/stylesheets/tipuesearch/tipuesearch.css" >
<% end %>
2017-05-03 23:40:53 +00:00
<% content_for :scripts do %>
2018-07-05 09:36:11 +00:00
<script src="https://code.jquery.com/jquery-3.0.0.min.js" charset="utf-8"></script>
<%= asset :js, :tipuesearch_set %>
2018-06-26 08:55:36 +00:00
<%= asset :js, :tipuesearch %>
2016-07-23 19:17:24 +00:00
<script>
$(document).ready(function() {
2016-10-04 20:04:34 +00:00
$('#tipue_search_input_field').tipuesearch({
2018-07-05 09:36:11 +00:00
'wholeWords': false,
2016-10-04 14:25:03 +00:00
'showTitleCount': false,
'tipue_search_content': '#blog_results',
'contentLocation': '../blog_search.json'
});
2016-10-04 20:04:34 +00:00
$('#tipue_search_input_field').tipuesearch({
2018-07-05 09:36:11 +00:00
'wholeWords': false,
2016-10-04 14:25:03 +00:00
'showTitleCount': false,
'tipue_search_content': '#event_results',
'contentLocation': '../event_search.json'
2016-07-23 19:17:24 +00:00
});
});
</script>
2017-05-03 23:40:53 +00:00
<% end %>