fanfic

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

about.html (3145B)


      1 <!doctype html>
      2 <html lang="jp">
      3     <head>
      4         <meta charset="utf-8" />
      5         <title>Trinity Library - Fanfic Index</title>
      6         <meta name="author" content="ハチか" />
      7         <meta name="description" content="ファンフィクション(二次創作置き場)" />
      8         <link rel="stylesheet" href="styles.css" />
      9     </head>
     10     <body>
     11         <header>
     12             Library
     13             <button class="theme-toggle" id="theme-btn">MODE: LIGHT</button>
     14         </header>
     15         <nav>
     16             <a href="index.html">ホーム</a>
     17             <a href="list.html">蔵書目録</a>
     18             <a href="sns.html">sns一覧</a>
     19             <a href="about.html">about</a>
     20         </nav>
     21         <main>
     22             <span class="doc-id">DOC_TYPE: ABOUT / REF_NO: 777</span>
     23             <h1>このサイトについて</h1>
     24 
     25             <h2>トリニティ図書館・書庫</h2>
     26             <p>
     27                 ここは個人の二次創作、主に「ブルーアーカイブ」に関する作品を収蔵する場所です。
     28             </p>
     29 
     30             <h2>免責事項 (Disclaimer)</h2>
     31             <p>
     32                 このサイトに掲載されているすべての作品は、ファン活動として制作された二次創作物です。
     33                 原作である「ブルーアーカイブ」をはじめ、NEXON Games Co.,
     34                 Ltd.、株式会社Yostar、その他すべての公式関係者様とは一切関係ありません。
     35             </p>
     36             <p>
     37                 内容はすべて個人の解釈に基づくものであり、公式の見解、設定、ストーリーラインを代表するものではありません。また、掲載内容の無断転載、複製、商業利用を固く禁じます。
     38             </p>
     39 
     40             <h2>ソースコード (Source Code)</h2>
     41             <p>
     42                 このウェブサイトのソースコードは、以下のGitHubリポジトリで公開しています。
     43                 <br />
     44                 <a
     45                     href="https://github.com/minerva-jupiter/fanfic"
     46                     target="_blank"
     47                     rel="noopener noreferrer"
     48                     >https://github.com/minerva-jupiter/fanfic</a
     49                 >
     50             </p>
     51         </main>
     52         <footer>
     53             このページは主にBlueArchiveの二次創作であり,公式を模す意図はありません.
     54         </footer>
     55 
     56         <script>
     57             const btn = document.getElementById("theme-btn");
     58             const docId = document.getElementById("doc-id");
     59             let isDark = false;
     60 
     61             btn.addEventListener("click", () => {
     62                 isDark = !isDark;
     63                 document.documentElement.setAttribute(
     64                     "data-theme",
     65                     isDark ? "dark" : "light",
     66                 );
     67                 btn.textContent = isDark ? "MODE: DARK" : "MODE: LIGHT";
     68 
     69                 docId.textContent = isDark
     70                     ? "DOC_TYPE: NIGHT_ARCHIVE / REF_NO: 404"
     71                     : "DOC_TYPE: INDEX / REF_NO: 773";
     72             });
     73         </script>
     74     </body>
     75 </html>