mirror of https://github.com/kiwix/libkiwix.git
* FIXED: kiwix-serve UI for non-javascript browsers like Dillo (#587)
This commit is contained in:
parent
fd9c259d2a
commit
36f0b977f7
File diff suppressed because it is too large
Load Diff
|
@ -93,7 +93,7 @@
|
|||
</style>
|
||||
<title>Search: <TMPL_var searchPattern></title>
|
||||
</head>
|
||||
<body>
|
||||
<body bgcolor="white">
|
||||
<div class="header">
|
||||
<TMPL_if results>
|
||||
Results <b><TMPL_var resultStart>-<TMPL_var resultEnd></b> of <b><TMPL_var count></b> for <b><TMPL_var searchPattern></b><TMPL_else>No result were found for <b><TMPL_var searchPattern></b></TMPL_if>
|
||||
|
|
|
@ -15,12 +15,12 @@
|
|||
</script>
|
||||
|
||||
<span id="kiwixtoolbar" class="ui-widget-header ui-corner-all">
|
||||
<button id="kiwixlibrary" onclick="window.location.href='/';">Library</button>
|
||||
<button id="kiwixhome" onclick="window.location.href='/__CONTENT__/';">Home</button>
|
||||
<form method="GET" action="/search" id="kiwixsearchform"/>
|
||||
<form action="/" method="POST"><input type="submit" value="Library" id="kiwixlibrary" /></form>
|
||||
<form action="/__CONTENT__/" method="POST"><input type="submit" value="Home" id="kiwixhome" /></form>
|
||||
<form method="GET" action="/search" id="kiwixsearchform">
|
||||
<input type="hidden" name="content" value="__CONTENT__" />
|
||||
<input type="submit" id="kiwixsearch" value="Search" />
|
||||
<input id="kiwixsearchbox" name="pattern"/>
|
||||
<input type="text" id="kiwixsearchbox" name="pattern" />
|
||||
</form>
|
||||
</span>
|
||||
<div style="display: block; height: 45px;"></div>
|
||||
|
|
Loading…
Reference in New Issue