mirror of
https://gitee.com/ulthon/ul-file-share.git
synced 2026-07-08 21:52:48 +08:00
33 lines
880 B
HTML
33 lines
880 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{:get_system_config('site_name')}</title>
|
|
{:get_system_config('site_tongji')}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<textarea id="README" style="display: none">
|
|
{:file_get_contents(app()->getRootPath().'README.md')}
|
|
</textarea>
|
|
|
|
<div id="README-PRE" style="max-width: 800px;margin: 0 auto">
|
|
|
|
</div>
|
|
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
|
|
<script src="https://cdn.bootcss.com/markdown-it/9.1.0/markdown-it.min.js"></script>
|
|
<script>
|
|
var md = window.markdownit();
|
|
var result = md.render($('#README').val());
|
|
$('#README-PRE').html(result)
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |