Skip to content

Commit

Permalink
Added loading jQuery-UI, jQuery-UI Autocomplete and partial template …
Browse files Browse the repository at this point in the history
…with search input
  • Loading branch information
karmi authored and kimchy committed Apr 10, 2011
1 parent 0714ca4 commit b8cb1f2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@

<link href="http://www.elasticsearch.org/atom.xml" rel="alternate" title="elasticsearch" type="application/atom+xml" />

<link rel="stylesheet" type="text/css" href="/scripts/prettify/prettify.css" />
<link rel="stylesheet" type="text/css" href="/scripts/prettify/prettify.css">
<link rel="stylesheet" type="text/css" href="/styles/reset.css" />
<link rel="stylesheet" type="text/css" href="/styles/screen.css?1000" />
<link rel="stylesheet" type="text/css" href="/styles/jquery-ui/ui-lightness/jquery-ui-1.8.9.custom.css">

<script type="text/javascript" src="/scripts/jquery-1.5.min.js"></script>
<script type="text/javascript" src="/scripts/jquery-ui-1.8.9.custom.min.js"></script>
<script type="text/javascript" src="/scripts/jquery.ui.autocomplete.html.js"></script>

<!-- Analytics -->
<script type="text/javascript">

Expand All @@ -35,6 +39,7 @@
<body>
<div id="wrapper">
<div id="all">
<div id="search-box"></div>
{% include header.html %}
{% if page.title_in_header != false %}
<h2 class="page_title">{{ page.title }} </h2>
Expand All @@ -54,5 +59,9 @@ <h2 class="page_title">{{ page.title }} </h2>
<script type="text/javascript">
prettyPrint();
</script>

</script>
<script>$('#search-box').load('/search.html');</script>

</body>
</html>

0 comments on commit b8cb1f2

Please sign in to comment.