1
0
Fork 0

search and 404 page

This commit is contained in:
Moritz »mo.« Sauer 2015-01-12 13:51:38 +01:00
parent 175fe7a3e2
commit 125bbb0c3d
3 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,8 @@
<script language="Javascript" type="text/javascript">
function google_search()
{
var query = document.getElementById("google-search").value;
window.open("http://google.com/search?q=" + query
+ "%20site:" + "{{ site.url }}");
}
</script>