Learn more:
36 | 41 |├── .gitignore ├── .layouts ├── 404.html ├── canvas.html ├── docs.html ├── head.html └── nav.html ├── 404.md ├── CNAME ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── _config.yml ├── assets ├── apple-touch-icon.png ├── canvas.js ├── card.png ├── icon.svg ├── prism.js └── style.css ├── docs └── apps.md ├── favicon.ico ├── logo.svg ├── readme.md ├── sample.canvas └── spec └── 1.0.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | .obsidian 6 | vendor 7 | .DS_Store -------------------------------------------------------------------------------- /.layouts/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% include head.html %} 4 |
5 | 6 |Whoops. You've found an unknown part of this infinite canvas. Head back home.
17 |