Skip to content

Commit 90eea75

Browse files
committed
Merge branch 'master' of github.com:wa-lang/wa-lang.github.io
# Conflicts: # docs/.vitepress/constants.ts
2 parents 465efdb + e7888f4 commit 90eea75

File tree

7 files changed

+286
-8
lines changed

7 files changed

+286
-8
lines changed

docs/.vitepress/components/HomePage.vue

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
<script setup lang="ts">
2-
import { COMMUNITIES, CONTRIBUTORS, FRIENDLY_LINK } from '../constants'
2+
import { COMMUNITIES, CONTRIBUTORS, FRIENDLY_LINK, DEMOS } from '../constants'
33
</script>
44

55
<template>
66
<div class="content">
7+
<div class="title">
8+
Gallery
9+
</div>
10+
<div class="list" :style="{ gridTemplateColumns: 'repeat(auto-fit, minmax(240px, 1fr))' }">
11+
<a
12+
v-for="(comms, idx) in DEMOS"
13+
:key="idx"
14+
class="card"
15+
:href="comms.link"
16+
target="_blank"
17+
:style="{ cursor: 'pointer' }"
18+
>
19+
<img class="card__logo" :src="`/c-logo/${comms.logoName}`">
20+
<span class="card__name" :style="{ marginTop: '8px' }">{{ comms.name }}</span>
21+
</a>
22+
</div>
23+
724
<div class="title">
825
Communities
926
</div>

docs/.vitepress/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export default async () => defineConfig({
2828
nav: [
2929
{ text: 'Manual', link: 'https://wa-lang.github.io/man/en/' },
3030
{ text: 'Playground', link: 'https://wa-lang.org/playground/' },
31-
{ text: 'Examples', link: '/examples/', activeMatch: '/examples/' },
3231
],
3332

3433
socialLinks: [

docs/public/c-logo/ploc-logo.svg

Lines changed: 107 additions & 0 deletions
Loading

docs/public/c-logo/wa.png

970 Bytes
Loading

docs/public/favicon.svg

Lines changed: 6 additions & 5 deletions
Loading

docs/public/logo-shadow.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/smalltalk/st0032.md

Lines changed: 154 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)