mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 13:57:10 +00:00
34 lines
847 B
HTML
34 lines
847 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="{{pluResPath}}content/content.css" />
|
|
<link rel="shortcut icon" href="#" />
|
|
</head>
|
|
{{@headStyle}}
|
|
|
|
<body style="display:none;" onload="document.body.style.display='block'">
|
|
<div class="container" id="container">
|
|
<!-- <div class="sender">-->
|
|
<!-- {{senderName}}-->
|
|
<!-- </div>-->
|
|
<div class="question">
|
|
<span>
|
|
{{prompt}}
|
|
</span>
|
|
|
|
</div>
|
|
<div class="answer">
|
|
<div id="content">
|
|
{{@ content}}
|
|
</div>
|
|
</div>
|
|
<div class="logo">Response to {{senderName}} Created By Yunzai-Bot and ChatGPT-Plugin</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|