Corin1998's picture
Update app/templates/base.html
9811513 verified
raw
history blame contribute delete
810 Bytes
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PR/IR MiniSaaS</title>
<style>
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;max-width:960px;margin:0 auto;padding:24px;}
header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.card{border:1px solid #eee;border-radius:12px;padding:16px;margin:12px 0}
.muted{color:#666}
input,select,button,textarea{font:inherit;padding:8px;border:1px solid #ddd;border-radius:8px}
button{cursor:pointer}
textarea{width:100%;min-height:160px}
</style>
</head>
<body>
<header>
<h1>PR/IR MiniSaaS</h1>
<a href="/">一覧</a>
</header>
{% block body %}{% endblock %}
</body>
</html>