33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
{{define "head"}}
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PR-Helper</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<script src="/static/js/htmx.min.js"></script>
|
|
</head>
|
|
{{end}}
|
|
|
|
{{define "nav"}}
|
|
<nav class="bg-white shadow-sm border-b border-gray-200">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between h-14">
|
|
<div class="flex items-center space-x-8">
|
|
<a href="/" class="text-lg font-bold text-indigo-600 hover:text-indigo-700">🔀 PR-Helper</a>
|
|
<a href="/" class="text-sm text-gray-600 hover:text-gray-900">首页</a>
|
|
<a href="/settings" class="text-sm text-gray-600 hover:text-gray-900">设置</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{{end}}
|
|
|
|
{{define "footer"}}
|
|
<footer class="bg-white border-t border-gray-200 py-4">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-sm text-gray-400">
|
|
PR-Helper — AI-powered PR description & code review
|
|
</div>
|
|
</footer>
|
|
{{end}}
|