Skip to content

Commit

Permalink
remove html formatting hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
yuheiy committed Jan 4, 2024
1 parent 0030129 commit a15064b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ searchURL.searchParams.set('q', `site:${Astro.site!.host}`);
<Header title={title} slot="header" />

<div class="prose wrapper">
<p
set:html={`<a data-internet-archive-link href="https://web.archive.org/web/*/${Astro.site}">インターネットアーカイブ</a>を参照するか、<a href="${searchURL}">サイト内を検索する</a>と、お探しのページが見つかるかもしれません。`}
/>
<p>
<a data-internet-archive-link href={`https://web.archive.org/web/*/${Astro.site}`}
>インターネットアーカイブ</a
>を参照するか、<a href={searchURL}>サイト内を検索する</a
>と、お探しのページが見つかるかもしれません。
</p>
</div>
</Layout>

Expand Down
9 changes: 6 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,12 @@ const blogEntries = (await getCollection('blog')).toSorted(
<Header title="安田 祐平" isHome slot="header">
<div class="space-y-4 text-dynamic-muted [&_a:any-link]:text-dynamic">
<p>{SITE_DESCRIPTION}</p>
<p
set:html={`監訳を担当した書籍『<a href="/${everylayoutEntry.slug}">Every Layout&mdash;&mdash;モジュラーなレスポンシブデザインを実現するCSS設計論</a>』が<a href="https://www.hanmoto.com/bd/isbn/9784862465177">オンライン書店などで発売中</a>。`}
/>
<p>
監訳を担当した書籍『<a href={`/${everylayoutEntry.slug}`}
>Every Layout&mdash;&mdash;モジュラーなレスポンシブデザインを実現するCSS設計論</a
>』が<a href="https://www.hanmoto.com/bd/isbn/9784862465177">オンライン書店などで発売中</a
>。
</p>
</div>
</Header>

Expand Down

0 comments on commit a15064b

Please sign in to comment.