├── .gitignore ├── api ├── next.js ├── prev.js └── random.js ├── readme.md ├── ring ├── citizens.json └── ring_tools.js ├── src └── index.html ├── static ├── embed.html ├── evo.png ├── silly.gif ├── toma-back.gif ├── toma-hello.gif ├── toma-next.gif └── toma-wai.gif └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | static/index.html 3 | -------------------------------------------------------------------------------- /api/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/api/next.js -------------------------------------------------------------------------------- /api/prev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/api/prev.js -------------------------------------------------------------------------------- /api/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/api/random.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/readme.md -------------------------------------------------------------------------------- /ring/citizens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/ring/citizens.json -------------------------------------------------------------------------------- /ring/ring_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/ring/ring_tools.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/src/index.html -------------------------------------------------------------------------------- /static/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/embed.html -------------------------------------------------------------------------------- /static/evo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/evo.png -------------------------------------------------------------------------------- /static/silly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/silly.gif -------------------------------------------------------------------------------- /static/toma-back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/toma-back.gif -------------------------------------------------------------------------------- /static/toma-hello.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/toma-hello.gif -------------------------------------------------------------------------------- /static/toma-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/toma-next.gif -------------------------------------------------------------------------------- /static/toma-wai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/static/toma-wai.gif -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyabla/silly.city-webring/HEAD/vercel.json --------------------------------------------------------------------------------