diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-06-29 14:44:45 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-06-29 14:44:45 +0900 |
| commit | 8b94b1423ffea638fe5c557fce58b7f87d7ab5f0 (patch) | |
| tree | 85acf8d9c3dbfb13d9bab4f35f9b77f902d74960 | |
| parent | 674fe965550444db87edc7937ff6932e1a918d9d (diff) | |
| download | nsfisis.dev-8b94b1423ffea638fe5c557fce58b7f87d7ab5f0.tar.gz nsfisis.dev-8b94b1423ffea638fe5c557fce58b7f87d7ab5f0.tar.zst nsfisis.dev-8b94b1423ffea638fe5c557fce58b7f87d7ab5f0.zip | |
feat(blog/style): change page navigation style
135 files changed, 378 insertions, 241 deletions
diff --git a/services/blog/nuldoc-src/components/Pagination.tsx b/services/blog/nuldoc-src/components/Pagination.tsx index 5527c924..ab13e361 100644 --- a/services/blog/nuldoc-src/components/Pagination.tsx +++ b/services/blog/nuldoc-src/components/Pagination.tsx @@ -11,31 +11,69 @@ export default function Pagination( return <div></div>; } + const firstPage = 1; + const lastPage = totalPages; const prevPage = currentPage > 1 ? currentPage - 1 : null; const nextPage = currentPage < totalPages ? currentPage + 1 : null; - const prevHref = prevPage === 1 ? basePath : `${basePath}${prevPage}/`; - const nextHref = `${basePath}${nextPage}/`; + const firstHref = pageUrlAt(basePath, firstPage); + const lastHref = pageUrlAt(basePath, lastPage); + const prevHref = prevPage ? pageUrlAt(basePath, prevPage) : null; + const nextHref = nextPage ? pageUrlAt(basePath, nextPage) : null; return ( <nav className="pagination"> <div className="pagination-prev"> - {prevPage + {prevHref ? ( <a href={prevHref}> - 前のページ + 前へ </a> ) : null} </div> - <div className="pagination-info"> - {String(currentPage)} / {String(totalPages)} + <div + className={"pagination-page" + + (firstPage === currentPage ? " pagination-page-current" : "")} + > + {firstPage === currentPage + ? String(firstPage) + : <a href={firstHref}>{String(firstPage)}</a>} + </div> + {currentPage - firstPage > 1 + ? ( + <div className="pagination-elipsis"> + … + </div> + ) + : null} + {currentPage !== firstPage && currentPage !== lastPage + ? ( + <div className="pagination-page pagination-page-current"> + {String(currentPage)} + </div> + ) + : null} + {lastPage - currentPage > 1 + ? ( + <div className="pagination-elipsis"> + … + </div> + ) + : null} + <div + className={"pagination-page" + + (lastPage === currentPage ? " pagination-page-current" : "")} + > + {lastPage === currentPage + ? String(lastPage) + : <a href={lastHref}>{String(lastPage)}</a>} </div> <div className="pagination-next"> - {nextPage + {nextHref ? ( <a href={nextHref}> - 次のページ + 次へ </a> ) : null} @@ -43,3 +81,7 @@ export default function Pagination( </nav> ); } + +function pageUrlAt(basePath: string, page: number): string { + return page === 1 ? basePath : `${basePath}${page}/`; +} diff --git a/services/blog/public/404.html b/services/blog/public/404.html index 4ec4d011..68e114b4 100644 --- a/services/blog/public/404.html +++ b/services/blog/public/404.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/about/index.html b/services/blog/public/about/index.html index 82609ac7..09877870 100644 --- a/services/blog/public/about/index.html +++ b/services/blog/public/about/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>About|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/atom.xml b/services/blog/public/atom.xml index be5ce941..49555e7e 100644 --- a/services/blog/public/atom.xml +++ b/services/blog/public/atom.xml @@ -20,7 +20,7 @@ <id>urn:uuid:64f5e1a6-2f5c-4d5d-b1c8-8346a66c1d40</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-05-05/make-tiny-self-hosted-c-compiler/"></link> <title>セルフホスト可能な C コンパイラを作った</title> - <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した</summary> + <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。</summary> <published>2025-05-05T00:00:00+09:00</published> <updated>2025-05-05T00:00:00+09:00</updated> </entry> diff --git a/services/blog/public/index.html b/services/blog/public/index.html index 576fdcbd..9ff6c53f 100644 --- a/services/blog/public/index.html +++ b/services/blog/public/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2/index.html b/services/blog/public/posts/2/index.html index 9d03cad2..1184d356 100644 --- a/services/blog/public/posts/2/index.html +++ b/services/blog/public/posts/2/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (2ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -44,13 +44,22 @@ </header> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/">前のページ</a> + <a href="/posts/">前へ</a> </div> - <div class="pagination-info"> - 2 / 6 + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-page pagination-page-current"> + 2 + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/3/">次のページ</a> + <a href="/posts/3/">次へ</a> </div> </nav> <article class="post-entry"> @@ -205,13 +214,22 @@ </article> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/">前のページ</a> + <a href="/posts/">前へ</a> + </div> + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-page pagination-page-current"> + 2 + </div> + <div class="pagination-elipsis"> + … </div> - <div class="pagination-info"> - 2 / 6 + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/3/">次のページ</a> + <a href="/posts/3/">次へ</a> </div> </nav> </main> diff --git a/services/blog/public/posts/2021-03-05/my-first-post/index.html b/services/blog/public/posts/2021-03-05/my-first-post/index.html index f1a3bc89..b1ba0e98 100644 --- a/services/blog/public/posts/2021-03-05/my-first-post/index.html +++ b/services/blog/public/posts/2021-03-05/my-first-post/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>My First Post|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-03-30/phperkaigi-2021/index.html b/services/blog/public/posts/2021-03-30/phperkaigi-2021/index.html index 6815783c..a45b20a4 100644 --- a/services/blog/public/posts/2021-03-30/phperkaigi-2021/index.html +++ b/services/blog/public/posts/2021-03-30/phperkaigi-2021/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2021|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/services/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html index 53bd4c70..935250b7 100644 --- a/services/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html +++ b/services/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【C++】 属性構文の属性名にはキーワードが使える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/python-unbound-local-error/index.html b/services/blog/public/posts/2021-10-02/python-unbound-local-error/index.html index 6b9c4172..d3b5f7c8 100644 --- a/services/blog/public/posts/2021-10-02/python-unbound-local-error/index.html +++ b/services/blog/public/posts/2021-10-02/python-unbound-local-error/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html b/services/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html index 9af43f11..7e618baf 100644 --- a/services/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html +++ b/services/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 自身を実行している処理系の種類を判定する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html b/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html index 5d8600f3..ac0aab67 100644 --- a/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html +++ b/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 then キーワードと case in|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html b/services/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html index 840109c8..34e6e8ca 100644 --- a/services/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html +++ b/services/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Rust のプリミティブ型はどこからやって来るか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html b/services/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html index b053944a..cdda1ae8 100644 --- a/services/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html +++ b/services/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Vim】 autocmd events の BufWrite/BufWritePre の違い|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html b/services/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html index fcdbec23..1be639cb 100644 --- a/services/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html +++ b/services/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Vimで選択した行の順番を入れ替える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html b/services/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html index ee215a60..04480dd0 100644 --- a/services/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html +++ b/services/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022 トークン問題の解説|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html b/services/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html index 0b8b6d14..81290f75 100644 --- a/services/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html +++ b/services/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>term-banner: ターミナルにバナーを表示するツールを書いた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-05-01/phperkaigi-2022/index.html b/services/blog/public/posts/2022-05-01/phperkaigi-2022/index.html index 9e9613d5..7b2ecdf4 100644 --- a/services/blog/public/posts/2022-05-01/phperkaigi-2022/index.html +++ b/services/blog/public/posts/2022-05-01/phperkaigi-2022/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html b/services/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html index 5835615d..3ce2fa81 100644 --- a/services/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html +++ b/services/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス沖縄で出題されたコードゴルフの問題を解いてみた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html b/services/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html index 3f5c70e8..299fef80 100644 --- a/services/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html +++ b/services/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>弊社の PHP Foundation への寄付に寄せて|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html b/services/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html index ab8c9867..911a4532 100644 --- a/services/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html +++ b/services/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【PHP】 fizzbuzz を書く。1行あたり2文字で。|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html b/services/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html index 364bfb9c..181c326c 100644 --- a/services/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html +++ b/services/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 1|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html b/services/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html index 8ca361a6..3621bfbd 100644 --- a/services/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html +++ b/services/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 このサイト用の VPS をセットアップしたときのメモ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html b/services/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html index 551a3700..2d313c54 100644 --- a/services/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html +++ b/services/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 2|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html b/services/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html index 4999317a..fcafb4dc 100644 --- a/services/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html +++ b/services/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 3|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html b/services/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html index d70cf265..b432bc59 100644 --- a/services/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html +++ b/services/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>このブログのジェネレータを書き直した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html b/services/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html index 83d597ed..ee5847cc 100644 --- a/services/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html +++ b/services/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PNG 画像の最小構成エンコーダを実装する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html b/services/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html index 2fb7421b..48c178b4 100644 --- a/services/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html +++ b/services/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html b/services/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html index 0ee28741..64063d20 100644 --- a/services/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html +++ b/services/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス福岡 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html b/services/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html index 34070bf9..e7ea57d1 100644 --- a/services/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html +++ b/services/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP の処理系を Emscripten で WebAssembly にコンパイルする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html b/services/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html index b7454af0..a408043c 100644 --- a/services/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html +++ b/services/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>放送大学に入学しました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-12-03/isucon-13/index.html b/services/blog/public/posts/2023-12-03/isucon-13/index.html index 0a476a84..347c35fb 100644 --- a/services/blog/public/posts/2023-12-03/isucon-13/index.html +++ b/services/blog/public/posts/2023-12-03/isucon-13/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ISUCON 13 に参加した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2023-12-31/2023-reflections/index.html b/services/blog/public/posts/2023-12-31/2023-reflections/index.html index 423eade4..23689142 100644 --- a/services/blog/public/posts/2023-12-31/2023-reflections/index.html +++ b/services/blog/public/posts/2023-12-31/2023-reflections/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2023年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html b/services/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html index a85e5bb5..a26f795f 100644 --- a/services/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html +++ b/services/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Neovim】 空の PHP ファイルに namespace 宣言を挿入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html b/services/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html index fe9be513..11984a94 100644 --- a/services/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html +++ b/services/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 個人用サーバに WireGuard を導入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html b/services/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html index 65e18ba8..144d49e5 100644 --- a/services/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html +++ b/services/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>YAPC::Hiroshima 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html b/services/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html index f3f42d6a..0acc6a0e 100644 --- a/services/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html +++ b/services/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPカンファレンス関西 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html b/services/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html index fef781ed..78d66e8d 100644 --- a/services/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html +++ b/services/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-03-20/my-bucket-list/index.html b/services/blog/public/posts/2024-03-20/my-bucket-list/index.html index 2a074a11..3a155d6a 100644 --- a/services/blog/public/posts/2024-03-20/my-bucket-list/index.html +++ b/services/blog/public/posts/2024-03-20/my-bucket-list/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>死ぬまでに作る自作○○一覧あるいは人生の TODO リスト|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html b/services/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html index 1d971870..32f1853f 100644 --- a/services/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html +++ b/services/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html b/services/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html index 31fee59b..235f0c01 100644 --- a/services/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html +++ b/services/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【GitLab】 GitLab CI/CD 上での bash/sh は pipefail が有効になっている|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html b/services/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html index 3262c137..55c02791 100644 --- a/services/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html +++ b/services/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Zsh】 Composer のカスタムコマンドに対する Zsh 補完で引数にファイルを補完させる|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html b/services/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html index 58395722..af51d8fc 100644 --- a/services/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html +++ b/services/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス香川 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html b/services/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html index d1adbb16..75a1cb5a 100644 --- a/services/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html +++ b/services/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ScalaMatsuri 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html b/services/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html index f191ebeb..cae7657a 100644 --- a/services/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html +++ b/services/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>reparojson: 文法エラーを直すだけの JSON フォーマッタを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html b/services/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html index 39450d30..f8de9575 100644 --- a/services/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html +++ b/services/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Go】 text/template の with や range の内側から外側の "." にアクセスする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-09-28/mncore-challenge-1/index.html b/services/blog/public/posts/2024-09-28/mncore-challenge-1/index.html index 23d77a20..d157fecb 100644 --- a/services/blog/public/posts/2024-09-28/mncore-challenge-1/index.html +++ b/services/blog/public/posts/2024-09-28/mncore-challenge-1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>MN-Core Challenge #1 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-12-04/cohackpp-report/index.html b/services/blog/public/posts/2024-12-04/cohackpp-report/index.html index 9c05a78a..72f9d17b 100644 --- a/services/blog/public/posts/2024-12-04/cohackpp-report/index.html +++ b/services/blog/public/posts/2024-12-04/cohackpp-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>紅白ぺぱ合戦に参加&LTしました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2024-12-33/2024-reflections/index.html b/services/blog/public/posts/2024-12-33/2024-reflections/index.html index d1f71cea..7060b7c9 100644 --- a/services/blog/public/posts/2024-12-33/2024-reflections/index.html +++ b/services/blog/public/posts/2024-12-33/2024-reflections/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2024年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html b/services/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html index a49c1087..e011387e 100644 --- a/services/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html +++ b/services/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 トークン問題解説 (1/5)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html b/services/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html index 1e0d983a..72103eb7 100644 --- a/services/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html +++ b/services/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html b/services/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html index 82b9d835..37dff904 100644 --- a/services/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html +++ b/services/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス名古屋 2025 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> @@ -108,7 +108,10 @@ <section id="section--outro"> <h2><a href="#section--outro">おわりに</a></h2> <p> - 今回もカンファレンスくらいでしか聴けないようなセッションがいくつも聴けてよかった。また、ちょうど連休だったのもあり名古屋も楽しむことができた。運営のみなさま、お疲れさまでした&ありがとうございました。次は PHPerKaigi 2025 で会いましょう。 + 今回もカンファレンスくらいでしか聴けないようなセッションがいくつも聴けてよかった。また、ちょうど連休だったのもあり名古屋も楽しむことができた。 + </p> + <p> + 運営のみなさま、お疲れさまでした&ありがとうございました。次は PHPerKaigi 2025 で会いましょう。 </p> </section> </div> diff --git a/services/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html b/services/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html index 11401ae6..71916d9b 100644 --- a/services/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html +++ b/services/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>zip 関数のようなコマンド paste|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html b/services/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html index f0e17c27..0714960f 100644 --- a/services/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html +++ b/services/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【HTTP】HTTP/1.1 で同じヘッダを2回送るとどうなるか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html b/services/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html index 1c36083a..c08bf8c1 100644 --- a/services/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html +++ b/services/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>RubyKaigi 2025 の TRICK で入賞した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html b/services/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html index c482abb1..4ba38465 100644 --- a/services/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html +++ b/services/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Composer】 composer-patches v2 では macOS でも GNU patch のインストールが不要になる (予定)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html b/services/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html index da17228a..1dea4889 100644 --- a/services/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html +++ b/services/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html @@ -5,16 +5,16 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="nsfisis"> <meta name="copyright" content="© 2025 nsfisis"> - <meta name="description" content="ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した"> + <meta name="description" content="ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。"> <meta name="keywords" content="C"> <meta property="og:type" content="article"> <meta property="og:title" content="セルフホスト可能な C コンパイラを作った|REPL: Rest-Eat-Program Loop"> - <meta property="og:description" content="ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した"> + <meta property="og:description" content="ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。"> <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>セルフホスト可能な C コンパイラを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/2025-06-14/baba-is-you/index.html b/services/blog/public/posts/2025-06-14/baba-is-you/index.html index cb82965f..25f5090a 100644 --- a/services/blog/public/posts/2025-06-14/baba-is-you/index.html +++ b/services/blog/public/posts/2025-06-14/baba-is-you/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>最高のパズルゲーム Baba Is You をやれ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/posts/3/index.html b/services/blog/public/posts/3/index.html index d1084aa1..144bde19 100644 --- a/services/blog/public/posts/3/index.html +++ b/services/blog/public/posts/3/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (3ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -44,13 +44,25 @@ </header> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/2/">前のページ</a> + <a href="/posts/2/">前へ</a> </div> - <div class="pagination-info"> - 3 / 6 + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 3 + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/4/">次のページ</a> + <a href="/posts/4/">次へ</a> </div> </nav> <article class="post-entry"> @@ -205,13 +217,25 @@ </article> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/2/">前のページ</a> + <a href="/posts/2/">前へ</a> + </div> + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 3 + </div> + <div class="pagination-elipsis"> + … </div> - <div class="pagination-info"> - 3 / 6 + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/4/">次のページ</a> + <a href="/posts/4/">次へ</a> </div> </nav> </main> diff --git a/services/blog/public/posts/4/index.html b/services/blog/public/posts/4/index.html index f5c6bc29..c80ef842 100644 --- a/services/blog/public/posts/4/index.html +++ b/services/blog/public/posts/4/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (4ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -44,13 +44,25 @@ </header> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/3/">前のページ</a> + <a href="/posts/3/">前へ</a> </div> - <div class="pagination-info"> - 4 / 6 + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 4 + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/5/">次のページ</a> + <a href="/posts/5/">次へ</a> </div> </nav> <article class="post-entry"> @@ -205,13 +217,25 @@ </article> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/3/">前のページ</a> + <a href="/posts/3/">前へ</a> + </div> + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 4 + </div> + <div class="pagination-elipsis"> + … </div> - <div class="pagination-info"> - 4 / 6 + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/5/">次のページ</a> + <a href="/posts/5/">次へ</a> </div> </nav> </main> diff --git a/services/blog/public/posts/5/index.html b/services/blog/public/posts/5/index.html index 6ae07782..044b5529 100644 --- a/services/blog/public/posts/5/index.html +++ b/services/blog/public/posts/5/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (5ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -44,13 +44,22 @@ </header> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/4/">前のページ</a> + <a href="/posts/4/">前へ</a> </div> - <div class="pagination-info"> - 5 / 6 + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 5 + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/6/">次のページ</a> + <a href="/posts/6/">次へ</a> </div> </nav> <article class="post-entry"> @@ -205,13 +214,22 @@ </article> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/4/">前のページ</a> + <a href="/posts/4/">前へ</a> + </div> + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 5 </div> - <div class="pagination-info"> - 5 / 6 + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/6/">次のページ</a> + <a href="/posts/6/">次へ</a> </div> </nav> </main> diff --git a/services/blog/public/posts/6/index.html b/services/blog/public/posts/6/index.html index 9fee169f..dd9c4e0c 100644 --- a/services/blog/public/posts/6/index.html +++ b/services/blog/public/posts/6/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (6ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -44,10 +44,16 @@ </header> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/5/">前のページ</a> + <a href="/posts/5/">前へ</a> </div> - <div class="pagination-info"> - 6 / 6 + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page pagination-page-current"> + 6 </div> <div class="pagination-next"> </div> @@ -84,10 +90,16 @@ </article> <nav class="pagination"> <div class="pagination-prev"> - <a href="/posts/5/">前のページ</a> + <a href="/posts/5/">前へ</a> + </div> + <div class="pagination-page"> + <a href="/posts/">1</a> + </div> + <div class="pagination-elipsis"> + … </div> - <div class="pagination-info"> - 6 / 6 + <div class="pagination-page pagination-page-current"> + 6 </div> <div class="pagination-next"> </div> diff --git a/services/blog/public/posts/atom.xml b/services/blog/public/posts/atom.xml index 8ffa9d26..856ee867 100644 --- a/services/blog/public/posts/atom.xml +++ b/services/blog/public/posts/atom.xml @@ -20,7 +20,7 @@ <id>urn:uuid:64f5e1a6-2f5c-4d5d-b1c8-8346a66c1d40</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-05-05/make-tiny-self-hosted-c-compiler/"></link> <title>セルフホスト可能な C コンパイラを作った</title> - <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した</summary> + <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。</summary> <published>2025-05-05T00:00:00+09:00</published> <updated>2025-05-05T00:00:00+09:00</updated> </entry> diff --git a/services/blog/public/posts/index.html b/services/blog/public/posts/index.html index 7b6ff6c7..c2c86216 100644 --- a/services/blog/public/posts/index.html +++ b/services/blog/public/posts/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (1ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -45,11 +45,17 @@ <nav class="pagination"> <div class="pagination-prev"> </div> - <div class="pagination-info"> - 1 / 6 + <div class="pagination-page pagination-page-current"> + 1 + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/2/">次のページ</a> + <a href="/posts/2/">次へ</a> </div> </nav> <article class="post-entry"> @@ -74,7 +80,7 @@ </header> <section class="entry-content"> <p> - ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した + ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。 </p> </section> <footer class="entry-footer"> @@ -205,11 +211,17 @@ <nav class="pagination"> <div class="pagination-prev"> </div> - <div class="pagination-info"> - 1 / 6 + <div class="pagination-page pagination-page-current"> + 1 + </div> + <div class="pagination-elipsis"> + … + </div> + <div class="pagination-page"> + <a href="/posts/6/">6</a> </div> <div class="pagination-next"> - <a href="/posts/2/">次のページ</a> + <a href="/posts/2/">次へ</a> </div> </nav> </main> diff --git a/services/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html b/services/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html index f78eb216..7da7de2a 100644 --- a/services/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html +++ b/services/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第148 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html b/services/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html index 8c4d3c70..ab29bb78 100644 --- a/services/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html +++ b/services/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第149 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html b/services/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html index 827677f6..b3fd73f3 100644 --- a/services/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html +++ b/services/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第150 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-03-24/phperkaigi-2023/index.html b/services/blog/public/slides/2023-03-24/phperkaigi-2023/index.html index 1959fd38..43adb41f 100644 --- a/services/blog/public/slides/2023-03-24/phperkaigi-2023/index.html +++ b/services/blog/public/slides/2023-03-24/phperkaigi-2023/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html b/services/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html index cfa7890f..4e2ab425 100644 --- a/services/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html +++ b/services/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 (トークン解説セッション)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html b/services/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html index 38641d42..9bdb1639 100644 --- a/services/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html +++ b/services/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第151 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html b/services/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html index ee24c8df..12dc59cf 100644 --- a/services/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html +++ b/services/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第153 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html b/services/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html index 1545b4c1..96efa3d0 100644 --- a/services/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html +++ b/services/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html b/services/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html index 39ef69a0..e2a1bc83 100644 --- a/services/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html +++ b/services/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第154 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html b/services/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html index 913438aa..426b437d 100644 --- a/services/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html +++ b/services/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第155 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html b/services/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html index f8bec343..64778e1f 100644 --- a/services/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html +++ b/services/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第157 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html b/services/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html index 71abc6b0..c95e5599 100644 --- a/services/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html +++ b/services/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第160 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-03-08/phperkaigi-2024/index.html b/services/blog/public/slides/2024-03-08/phperkaigi-2024/index.html index 2e1b436d..6821100d 100644 --- a/services/blog/public/slides/2024-03-08/phperkaigi-2024/index.html +++ b/services/blog/public/slides/2024-03-08/phperkaigi-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2024 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-03-15/ya8-2024/index.html b/services/blog/public/slides/2024-03-15/ya8-2024/index.html index 51b003f0..1abaa09d 100644 --- a/services/blog/public/slides/2024-03-15/ya8-2024/index.html +++ b/services/blog/public/slides/2024-03-15/ya8-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Ya8 2024 (レギュラートーク (60分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html b/services/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html index 94106604..17742002 100644 --- a/services/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html +++ b/services/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2024 (レギュラートーク (15分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html b/services/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html index 81d28131..40868de2 100644 --- a/services/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html +++ b/services/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第163回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html b/services/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html index 0c58b63b..72c1e569 100644 --- a/services/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html +++ b/services/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第166回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html b/services/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html index 50b1cf33..6e5edc5c 100644 --- a/services/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html +++ b/services/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第169回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2024-11-30/cohackpp/index.html b/services/blog/public/slides/2024-11-30/cohackpp/index.html index 4d5b587a..d79dfb81 100644 --- a/services/blog/public/slides/2024-11-30/cohackpp/index.html +++ b/services/blog/public/slides/2024-11-30/cohackpp/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>紅白ぺぱ合戦 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html b/services/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html index da309ea9..5640b36a 100644 --- a/services/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html +++ b/services/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2025-03-23/phperkaigi-2025/index.html b/services/blog/public/slides/2025-03-23/phperkaigi-2025/index.html index f0460e1c..ee2a7064 100644 --- a/services/blog/public/slides/2025-03-23/phperkaigi-2025/index.html +++ b/services/blog/public/slides/2025-03-23/phperkaigi-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2025 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html b/services/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html index be74f6f6..4d173ebe 100644 --- a/services/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html +++ b/services/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2025 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="single"> <header class="header"> diff --git a/services/blog/public/slides/index.html b/services/blog/public/slides/index.html index f3b498ba..acf20761 100644 --- a/services/blog/public/slides/index.html +++ b/services/blog/public/slides/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/slides/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>スライド一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/style.css b/services/blog/public/style.css index fda139d7..529c15be 100644 --- a/services/blog/public/style.css +++ b/services/blog/public/style.css @@ -315,51 +315,43 @@ img { .pagination { display: flex; - justify-content: space-between; + justify-content: center; align-items: center; + gap: 1rem; margin: 2rem 0; padding: 1rem 0; border-top: 1px solid #d1d1d1; border-bottom: 1px solid #d1d1d1; } -.pagination-prev, -.pagination-next { - flex: 1; -} - -.pagination-prev { - text-align: left; -} - -.pagination-next { - text-align: right; -} - -.pagination-info { - flex: 0 0 auto; +.pagination-page { + display: flex; + align-items: center; + justify-content: center; + padding: 0.5rem 1rem; + border: 1px solid #ddd; text-align: center; - color: #000; - font-size: 0.9rem; + box-sizing: border-box; } .pagination a { - text-decoration: none; color: #000; - padding: 0.5rem 1rem; + background: #fff; + text-decoration: none; border: none; } -.pagination a:hover { - color: #666; +.pagination-page-current { + background: #000; + color: #fff; +} + +.pagination-elipsis { + color: #999; } @media screen and (max-width: 768px) { .pagination { font-size: 0.9rem; } - - .pagination a { - padding: 0.5rem; - } } diff --git a/services/blog/public/tags/c/atom.xml b/services/blog/public/tags/c/atom.xml index 3a4fc63e..4b73eb3b 100644 --- a/services/blog/public/tags/c/atom.xml +++ b/services/blog/public/tags/c/atom.xml @@ -12,7 +12,7 @@ <id>urn:uuid:64f5e1a6-2f5c-4d5d-b1c8-8346a66c1d40</id> <link rel="alternate" href="https://blog.nsfisis.dev/posts/2025-05-05/make-tiny-self-hosted-c-compiler/"></link> <title>セルフホスト可能な C コンパイラを作った</title> - <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した</summary> + <summary>ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。</summary> <published>2025-05-05T00:00:00+09:00</published> <updated>2025-05-05T00:00:00+09:00</updated> </entry> diff --git a/services/blog/public/tags/c/index.html b/services/blog/public/tags/c/index.html index 0a738be4..8228360e 100644 --- a/services/blog/public/tags/c/index.html +++ b/services/blog/public/tags/c/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/c/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> @@ -50,7 +50,7 @@ </header> <section class="entry-content"> <p> - ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した + ゴールデンウィークを使って、セルフホストできる C コンパイラを開発した。 </p> </section> <footer class="entry-footer"> diff --git a/services/blog/public/tags/ci-cd/index.html b/services/blog/public/tags/ci-cd/index.html index 7c3e4992..54ee4b5d 100644 --- a/services/blog/public/tags/ci-cd/index.html +++ b/services/blog/public/tags/ci-cd/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ci-cd/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「CI/CD」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/cohackpp/index.html b/services/blog/public/tags/cohackpp/index.html index 55f31447..dd5e67c1 100644 --- a/services/blog/public/tags/cohackpp/index.html +++ b/services/blog/public/tags/cohackpp/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cohackpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/composer/index.html b/services/blog/public/tags/composer/index.html index 9ba883b2..31c0aaee 100644 --- a/services/blog/public/tags/composer/index.html +++ b/services/blog/public/tags/composer/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/composer/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Composer」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/conference/index.html b/services/blog/public/tags/conference/index.html index 961178c7..d6d1b3a6 100644 --- a/services/blog/public/tags/conference/index.html +++ b/services/blog/public/tags/conference/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/conference/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/cpp/index.html b/services/blog/public/tags/cpp/index.html index cb23cbb6..bb6bf229 100644 --- a/services/blog/public/tags/cpp/index.html +++ b/services/blog/public/tags/cpp/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/cpp17/index.html b/services/blog/public/tags/cpp17/index.html index cc6beb35..101e9f08 100644 --- a/services/blog/public/tags/cpp17/index.html +++ b/services/blog/public/tags/cpp17/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp17/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++ 17」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/game/index.html b/services/blog/public/tags/game/index.html index aea82f63..bf0a79c3 100644 --- a/services/blog/public/tags/game/index.html +++ b/services/blog/public/tags/game/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/game/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ゲーム」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/gitlab/index.html b/services/blog/public/tags/gitlab/index.html index 54654079..8b96921e 100644 --- a/services/blog/public/tags/gitlab/index.html +++ b/services/blog/public/tags/gitlab/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/gitlab/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「GitLab」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/go/index.html b/services/blog/public/tags/go/index.html index 7add2732..1d8a2aca 100644 --- a/services/blog/public/tags/go/index.html +++ b/services/blog/public/tags/go/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/go/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Go」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/http/index.html b/services/blog/public/tags/http/index.html index 67776cdf..782fd453 100644 --- a/services/blog/public/tags/http/index.html +++ b/services/blog/public/tags/http/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/http/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「HTTP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/index.html b/services/blog/public/tags/index.html index 73260867..f5766c11 100644 --- a/services/blog/public/tags/index.html +++ b/services/blog/public/tags/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/isucon/index.html b/services/blog/public/tags/isucon/index.html index 5d5bdd5e..edc24f2b 100644 --- a/services/blog/public/tags/isucon/index.html +++ b/services/blog/public/tags/isucon/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/isucon/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ISUCON」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/macos/index.html b/services/blog/public/tags/macos/index.html index 93cb9132..4bf3feef 100644 --- a/services/blog/public/tags/macos/index.html +++ b/services/blog/public/tags/macos/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/macos/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「macOS」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/mncore-challenge/index.html b/services/blog/public/tags/mncore-challenge/index.html index 7676d112..87ef8469 100644 --- a/services/blog/public/tags/mncore-challenge/index.html +++ b/services/blog/public/tags/mncore-challenge/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/mncore-challenge/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「MN-Core Challenge」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/neovim/index.html b/services/blog/public/tags/neovim/index.html index ea1cebdc..8f047708 100644 --- a/services/blog/public/tags/neovim/index.html +++ b/services/blog/public/tags/neovim/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/neovim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Neovim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/note-to-self/index.html b/services/blog/public/tags/note-to-self/index.html index 7c4ca73d..3846aaa9 100644 --- a/services/blog/public/tags/note-to-self/index.html +++ b/services/blog/public/tags/note-to-self/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/note-to-self/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「備忘録」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/ouj/index.html b/services/blog/public/tags/ouj/index.html index 3e76b482..cb90d972 100644 --- a/services/blog/public/tags/ouj/index.html +++ b/services/blog/public/tags/ouj/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ouj/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「放送大学」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/perl/index.html b/services/blog/public/tags/perl/index.html index 8865fee9..6a57a893 100644 --- a/services/blog/public/tags/perl/index.html +++ b/services/blog/public/tags/perl/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/perl/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Perl」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/php/index.html b/services/blog/public/tags/php/index.html index cfb41078..a85379d5 100644 --- a/services/blog/public/tags/php/index.html +++ b/services/blog/public/tags/php/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/php/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpcon-nagoya/index.html b/services/blog/public/tags/phpcon-nagoya/index.html index 2b1dc9bf..c587e144 100644 --- a/services/blog/public/tags/phpcon-nagoya/index.html +++ b/services/blog/public/tags/phpcon-nagoya/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-nagoya/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpcon-odawara/index.html b/services/blog/public/tags/phpcon-odawara/index.html index 52fec2b6..ea388d09 100644 --- a/services/blog/public/tags/phpcon-odawara/index.html +++ b/services/blog/public/tags/phpcon-odawara/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-odawara/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpconfuk/index.html b/services/blog/public/tags/phpconfuk/index.html index 80bfc60c..4ecdc276 100644 --- a/services/blog/public/tags/phpconfuk/index.html +++ b/services/blog/public/tags/phpconfuk/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconfuk/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpconkagawa/index.html b/services/blog/public/tags/phpconkagawa/index.html index 6e1284d0..acc42efc 100644 --- a/services/blog/public/tags/phpconkagawa/index.html +++ b/services/blog/public/tags/phpconkagawa/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconkagawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス香川」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpconokinawa/index.html b/services/blog/public/tags/phpconokinawa/index.html index 285cb629..02119081 100644 --- a/services/blog/public/tags/phpconokinawa/index.html +++ b/services/blog/public/tags/phpconokinawa/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconokinawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス沖縄」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phperkaigi/index.html b/services/blog/public/tags/phperkaigi/index.html index bcd8be37..9c3dbad5 100644 --- a/services/blog/public/tags/phperkaigi/index.html +++ b/services/blog/public/tags/phperkaigi/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phperkaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpkansai/index.html b/services/blog/public/tags/phpkansai/index.html index de4d5e63..9c4de4a4 100644 --- a/services/blog/public/tags/phpkansai/index.html +++ b/services/blog/public/tags/phpkansai/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpkansai/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス関西」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/phpstudy-tokyo/index.html b/services/blog/public/tags/phpstudy-tokyo/index.html index 373da9df..455dfd2c 100644 --- a/services/blog/public/tags/phpstudy-tokyo/index.html +++ b/services/blog/public/tags/phpstudy-tokyo/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpstudy-tokyo/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP 勉強会@東京」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/piet/index.html b/services/blog/public/tags/piet/index.html index 6578679e..ed0e7ee3 100644 --- a/services/blog/public/tags/piet/index.html +++ b/services/blog/public/tags/piet/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/piet/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Piet」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/python/index.html b/services/blog/public/tags/python/index.html index 31f55003..a6d73973 100644 --- a/services/blog/public/tags/python/index.html +++ b/services/blog/public/tags/python/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/python3/index.html b/services/blog/public/tags/python3/index.html index ea9600eb..702e4c8c 100644 --- a/services/blog/public/tags/python3/index.html +++ b/services/blog/public/tags/python3/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/ruby/index.html b/services/blog/public/tags/ruby/index.html index 1f3e7c74..97afc7ac 100644 --- a/services/blog/public/tags/ruby/index.html +++ b/services/blog/public/tags/ruby/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/ruby3/index.html b/services/blog/public/tags/ruby3/index.html index b51d5c1d..f60cadd6 100644 --- a/services/blog/public/tags/ruby3/index.html +++ b/services/blog/public/tags/ruby3/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/rubykaigi/index.html b/services/blog/public/tags/rubykaigi/index.html index 651045a6..09aecb2b 100644 --- a/services/blog/public/tags/rubykaigi/index.html +++ b/services/blog/public/tags/rubykaigi/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rubykaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「RubyKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/rust/index.html b/services/blog/public/tags/rust/index.html index 89b7c5a6..506d3ed2 100644 --- a/services/blog/public/tags/rust/index.html +++ b/services/blog/public/tags/rust/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rust/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Rust」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/scala/index.html b/services/blog/public/tags/scala/index.html index 57c2635c..9439ea9a 100644 --- a/services/blog/public/tags/scala/index.html +++ b/services/blog/public/tags/scala/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scala/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Scala」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/scalamatsuri/index.html b/services/blog/public/tags/scalamatsuri/index.html index d8f4a04e..68b924ec 100644 --- a/services/blog/public/tags/scalamatsuri/index.html +++ b/services/blog/public/tags/scalamatsuri/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scalamatsuri/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ScalaMatsuri」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/trick/index.html b/services/blog/public/tags/trick/index.html index 5cb0388e..eaff74b1 100644 --- a/services/blog/public/tags/trick/index.html +++ b/services/blog/public/tags/trick/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/trick/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「TRICK」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/vim/index.html b/services/blog/public/tags/vim/index.html index 16adf278..c25b4a33 100644 --- a/services/blog/public/tags/vim/index.html +++ b/services/blog/public/tags/vim/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/vim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Vim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/wasm/index.html b/services/blog/public/tags/wasm/index.html index 11b65951..dfc992f2 100644 --- a/services/blog/public/tags/wasm/index.html +++ b/services/blog/public/tags/wasm/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wasm/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/wireguard/index.html b/services/blog/public/tags/wireguard/index.html index f93950c1..01916b2b 100644 --- a/services/blog/public/tags/wireguard/index.html +++ b/services/blog/public/tags/wireguard/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wireguard/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WireGuard」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/ya8/index.html b/services/blog/public/tags/ya8/index.html index bacd8ebd..79bc50ca 100644 --- a/services/blog/public/tags/ya8/index.html +++ b/services/blog/public/tags/ya8/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ya8/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ya8」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/yaml/index.html b/services/blog/public/tags/yaml/index.html index 85e3f867..c76eae58 100644 --- a/services/blog/public/tags/yaml/index.html +++ b/services/blog/public/tags/yaml/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yaml/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAML」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/yapc/index.html b/services/blog/public/tags/yapc/index.html index 101e020e..c01de964 100644 --- a/services/blog/public/tags/yapc/index.html +++ b/services/blog/public/tags/yapc/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yapc/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAPC」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/public/tags/zsh/index.html b/services/blog/public/tags/zsh/index.html index 2d519848..68df8d66 100644 --- a/services/blog/public/tags/zsh/index.html +++ b/services/blog/public/tags/zsh/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/zsh/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Zsh」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=9513229b52eb2041b99ba1b959305633"> + <link rel="stylesheet" href="/style.css?h=99f9dcb3410627bbc92c4985b4b59520"> </head> <body class="list"> <header class="header"> diff --git a/services/blog/static/style.css b/services/blog/static/style.css index fda139d7..529c15be 100644 --- a/services/blog/static/style.css +++ b/services/blog/static/style.css @@ -315,51 +315,43 @@ img { .pagination { display: flex; - justify-content: space-between; + justify-content: center; align-items: center; + gap: 1rem; margin: 2rem 0; padding: 1rem 0; border-top: 1px solid #d1d1d1; border-bottom: 1px solid #d1d1d1; } -.pagination-prev, -.pagination-next { - flex: 1; -} - -.pagination-prev { - text-align: left; -} - -.pagination-next { - text-align: right; -} - -.pagination-info { - flex: 0 0 auto; +.pagination-page { + display: flex; + align-items: center; + justify-content: center; + padding: 0.5rem 1rem; + border: 1px solid #ddd; text-align: center; - color: #000; - font-size: 0.9rem; + box-sizing: border-box; } .pagination a { - text-decoration: none; color: #000; - padding: 0.5rem 1rem; + background: #fff; + text-decoration: none; border: none; } -.pagination a:hover { - color: #666; +.pagination-page-current { + background: #000; + color: #fff; +} + +.pagination-elipsis { + color: #999; } @media screen and (max-width: 768px) { .pagination { font-size: 0.9rem; } - - .pagination a { - padding: 0.5rem; - } } |
