bookshelf-doc/DocGen4/Output/Find.lean

23 lines
493 B
Plaintext
Raw Permalink Normal View History

2022-02-13 14:42:15 +00:00
import DocGen4.Output.Template
namespace DocGen4
namespace Output
open scoped DocGen4.Jsx
open Lean
def find : BaseHtmlM Html := do
2022-02-20 17:12:49 +00:00
pure
<html lang="en">
<head>
2023-01-01 18:51:01 +00:00
<link rel="preload" href={s!"{← getRoot}/declarations/declaration-data.bmp"} as="image"/>
<script>{s!"const SITE_ROOT={String.quote (← getRoot)};"}</script>
<script type="module" async="true" src="./find.js"></script>
2022-02-20 17:12:49 +00:00
</head>
<body></body>
</html>
2022-02-13 14:42:15 +00:00
end Output
end DocGen4
2022-02-20 17:12:49 +00:00