-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
61 lines (55 loc) · 1.8 KB
/
Copy pathprofile.html
File metadata and controls
61 lines (55 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>プロフィール - NeoGamma</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="NeoGamma プロジェクトの作者プロフィールと開発方針">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style>
body {
font-family: sans-serif;
max-width: 800px;
margin: 2em auto;
padding: 1em;
background: #fefefe;
color: #333;
line-height: 1.6;
}
h1 {
color: #2c3e50;
border-bottom: 2px solid #ccc;
padding-bottom: 0.3em;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>プロフィール</h1>
<p><strong>NeoGamma</strong> は、PukiWiki プラグインの拡張や、古い仕様の再現、柔軟な引数解析の実験などを目的としたプロジェクトです。</p>
<h2>🧑💻 作者について</h2>
<p>
このプロジェクトは <strong>softchip</strong> によって開発・保守されています。<br>
レガシーなユーザー体験を尊重しつつ、現代的な柔軟性と保守性を両立することを目指しています。
</p>
<h2>🎯 開発ポリシー</h2>
<ul>
<li>ユーザー入力に寛容な引数解析</li>
<li>エラー状態を明示し、再現性のあるデバッグを可能に</li>
<li>SEOとURLの美しさを両立</li>
<li>最小限で堅牢なサーバー・PHP側の設計</li>
</ul>
<h2>🔗 関連リンク</h2>
<ul>
<li><a href="index.html">トップページ</a></li>
<li><a href="readme.html">README(HTML版)</a></li>
<li><a href="https://github.com/torrent/neogamma/wiki">GitHub Wiki</a></li>
</ul>
</body>
</html>