├── .favorites.json ├── .github └── workflows │ ├── bin-build.yml │ ├── bin-test.yml │ └── deploy-example.yml ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── action.yml ├── bluesky.ts ├── bun.lock ├── compile.sh ├── example-project ├── bimbo.yaml ├── content │ ├── about.md │ ├── archive.md │ ├── feed.md │ ├── index.md │ └── posts │ │ ├── 1-intro.md │ │ ├── 2-getting-started.md │ │ ├── 3-folders.md │ │ ├── 4-building.md │ │ ├── 5-data.md │ │ ├── 6-beyond.md │ │ ├── 7-bsky-comments.md │ │ └── ~default.yaml ├── static │ ├── images │ │ ├── bg_diamond.png │ │ ├── bsky_post.png │ │ ├── dbz_goku.gif │ │ ├── favicon.ico │ │ └── header.png │ └── style │ │ └── style.css └── templates │ ├── archive.html │ ├── default.html │ ├── index.html │ ├── partials │ ├── bsky-comments.hbs │ ├── content.hbs │ ├── footer.hbs │ ├── head.hbs │ ├── navbar.hbs │ └── post-list.hbs │ └── post.html ├── example.png ├── jsconfig.json ├── main.js └── package.json /.favorites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.favorites.json -------------------------------------------------------------------------------- /.github/workflows/bin-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.github/workflows/bin-build.yml -------------------------------------------------------------------------------- /.github/workflows/bin-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.github/workflows/bin-test.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.github/workflows/deploy-example.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/action.yml -------------------------------------------------------------------------------- /bluesky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/bluesky.ts -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/bun.lock -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/compile.sh -------------------------------------------------------------------------------- /example-project/bimbo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/bimbo.yaml -------------------------------------------------------------------------------- /example-project/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/about.md -------------------------------------------------------------------------------- /example-project/content/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/archive.md -------------------------------------------------------------------------------- /example-project/content/feed.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RSS 3 | navIndex: 3 4 | redirect: /feed.xml 5 | --- -------------------------------------------------------------------------------- /example-project/content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/index.md -------------------------------------------------------------------------------- /example-project/content/posts/1-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/1-intro.md -------------------------------------------------------------------------------- /example-project/content/posts/2-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/2-getting-started.md -------------------------------------------------------------------------------- /example-project/content/posts/3-folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/3-folders.md -------------------------------------------------------------------------------- /example-project/content/posts/4-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/4-building.md -------------------------------------------------------------------------------- /example-project/content/posts/5-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/5-data.md -------------------------------------------------------------------------------- /example-project/content/posts/6-beyond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/6-beyond.md -------------------------------------------------------------------------------- /example-project/content/posts/7-bsky-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/7-bsky-comments.md -------------------------------------------------------------------------------- /example-project/content/posts/~default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/content/posts/~default.yaml -------------------------------------------------------------------------------- /example-project/static/images/bg_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/images/bg_diamond.png -------------------------------------------------------------------------------- /example-project/static/images/bsky_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/images/bsky_post.png -------------------------------------------------------------------------------- /example-project/static/images/dbz_goku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/images/dbz_goku.gif -------------------------------------------------------------------------------- /example-project/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/images/favicon.ico -------------------------------------------------------------------------------- /example-project/static/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/images/header.png -------------------------------------------------------------------------------- /example-project/static/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/static/style/style.css -------------------------------------------------------------------------------- /example-project/templates/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/archive.html -------------------------------------------------------------------------------- /example-project/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/default.html -------------------------------------------------------------------------------- /example-project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/index.html -------------------------------------------------------------------------------- /example-project/templates/partials/bsky-comments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/partials/bsky-comments.hbs -------------------------------------------------------------------------------- /example-project/templates/partials/content.hbs: -------------------------------------------------------------------------------- 1 |

{{title}}

2 | 3 | {{{content}}} -------------------------------------------------------------------------------- /example-project/templates/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/partials/footer.hbs -------------------------------------------------------------------------------- /example-project/templates/partials/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/partials/head.hbs -------------------------------------------------------------------------------- /example-project/templates/partials/navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/partials/navbar.hbs -------------------------------------------------------------------------------- /example-project/templates/partials/post-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/partials/post-list.hbs -------------------------------------------------------------------------------- /example-project/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example-project/templates/post.html -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/example.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iznaut/bimbo/HEAD/package.json --------------------------------------------------------------------------------