added more preview pages and more templates

This commit is contained in:
2026-07-21 07:10:03 -05:00
parent c6119ffdf5
commit b19fdee30d
3726 changed files with 651487 additions and 6169 deletions
+22
View File
@@ -0,0 +1,22 @@
$(function(){
var s=location.search.replace(/^\?.*s=([^&]+)/,'$1')
,form=$('#search-form')
,input=$('input[type=text]',form)
,results=$('#search-results').height(0)
,src='search/results.php'
,ifr=$('<iframe width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" allowTransparency="true"></iframe>')
if(results.length)
ifr
.attr({
src:src+'?s='+s
})
.appendTo(results)
,input
.val(decodeURI(s))
window._resize=function(h){
results
.height(h)
}
})