Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/static/search.html

16 lines
391 B
HTML
Raw Normal View History

2016-11-02 20:16:31 +05:00
<html>
<head>
<title> search for posts </title>
<link rel="stylesheet" href="site.css"></link>
2016-11-02 20:19:45 +05:00
<script src="search.js" type="text/javascript"></script>
2016-11-02 20:16:31 +05:00
</head>
<body>
<noscript>search requires javascript for now</noscript>
<div id="search"></div>
2016-11-02 20:19:45 +05:00
<script>
2016-11-02 20:16:31 +05:00
var e = document.getElementById("search");
inject_search(e);
</script>
</body>
</html>