Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/svelte.dev/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<figure>
<Video />
<figcaption>
<a href="https://www.offerzen.com/community/svelte-origins-documentary"
<a href="https://www.offerzen.com/community/svelte-origins-documentary" target="_blank"
>Watch the full Svelte Origins documentary</a
>
</figcaption>
Expand Down
7 changes: 4 additions & 3 deletions apps/svelte.dev/src/routes/_home/Community.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
<Section --max-width="200rem">
<h2>join our friendly community</h2>
<p>
Our sister organisation, <a href="https://www.sveltesociety.dev/">Svelte Society</a>, organises
events around the globe.
Our sister organisation, <a href="https://www.sveltesociety.dev/" target="_blank"
>Svelte Society</a
>, organises events around the globe.
</p>
<p>Find your chapter and join us in <a href="/chat">our Discord server</a>.</p>
<p>Find your chapter and join us in <a href="/chat" target="_blank">our Discord server</a>.</p>

<figure>
<enhanced:img
Expand Down
4 changes: 3 additions & 1 deletion apps/svelte.dev/src/routes/_home/Supporters/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
style="background-position: {(100 * i) / (contributors.length - 1)}% 0"
style:background-image="url({contributors_img})"
href="https://github.com/{contributor}"
target="_blank"
>
{contributor}
</a>
Expand All @@ -32,7 +33,8 @@
class="supporter"
style="background-position: {(100 * i) / (donors.length - 1)}% 0"
style:background-image="url({donors_img})"
href="https://opencollective.com/svelte">{donor}</a
href="https://opencollective.com/svelte"
target="_blank">{donor}</a
>
{/each}
</div>
Expand Down
9 changes: 6 additions & 3 deletions apps/svelte.dev/src/routes/_home/Testimonials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,22 @@

<!-- svelte-ignore a11y_consider_explicit_label (the <enhanced:img> alt takes care of it)-->
<div class="screenshots">
<a href="https://survey.stackoverflow.co/2024/technology#2-web-frameworks-and-technologies">
<a
href="https://survey.stackoverflow.co/2024/technology#2-web-frameworks-and-technologies"
target="_blank"
>
<enhanced:img
alt="Stack Overflow 2024 Developer Survey"
src="./stack-overflow.png?w=1200,1600"
></enhanced:img>
</a>

<a href="https://2023.stateofjs.com/en-US/libraries/front-end-frameworks/">
<a href="https://2023.stateofjs.com/en-US/libraries/front-end-frameworks/" target="_blank">
<enhanced:img alt="State of JavaScript 2023" src="./state-of-js-chart.png?w=1000,1400"
></enhanced:img>
</a>

<a href="https://x.com/flaviocopes/status/1730895911864189299">
<a href="https://x.com/flaviocopes/status/1730895911864189299" target="_blank">
<enhanced:img alt="Tweet from @flaviocopes" src="./flavio-light.png?w=800"></enhanced:img>
</a>
</div>
Expand Down
5 changes: 3 additions & 2 deletions packages/site-kit/src/lib/home/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

<Section>
<p class="copyright">
© 2024 Svelte contributors. Svelte is <a href="https://github.com/sveltejs/svelte"
>free and open source software</a
© 2024 Svelte contributors. Svelte is <a
href="https://github.com/sveltejs/svelte"
target="_blank">free and open source software</a
> released under the MIT license.
</p>
</Section>
Expand Down
Loading