Skip to content

Commit

Permalink
fixed the webrings not using the is:inline property
Browse files Browse the repository at this point in the history
  • Loading branch information
ThinLiquid authored Oct 27, 2024
1 parent 1328020 commit 253f9ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const timeAgo = new TimeAgo('en-US')
interface Props {
title: string;
frontmatter: any;
frontmatter?: any;
}
const { title, frontmatter } = Astro.props;
Expand Down Expand Up @@ -102,15 +102,15 @@ const commit = getGitInfo()
<div>
<h3>webrings</h3>
<div id="nekowebring" style="color: var(--base)">
<script type="text/javascript" src="https://webring.nekoweb.org/onionring-variables.js"></script>
<script type="text/javascript" src="https://webring.nekoweb.org/onionring-widget.js"></script>
<script is:inline type="text/javascript" src="https://webring.nekoweb.org/onionring-variables.js"></script>
<script is:inline type="text/javascript" src="https://webring.nekoweb.org/onionring-widget.js"></script>
</div>
<webring-container>
<config key="type" value="catppuccin-mocha"></config>
<config key="font" value="Inter, sans-serif"></config>
<config key="fill" value="true"></config>

<script src="https://palette.nekoweb.org/webring.js" is:inline></script>
<script is:inline src="https://palette.nekoweb.org/webring.js"></script>
</webring-container>
<br />
<iframe id="bucket-webring" style="width: 100%; height: 3rem; border: none" src="https://webring.bucketfish.me/embed.html?name=ThinLiquid"></iframe>
Expand Down

0 comments on commit 253f9ad

Please sign in to comment.