A charming Jekyll theme. linus.arthr.dev/
jekyll-theme
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: project config

+1 -32
-3
.gitignore
··· 5 5 _site 6 6 Gemfile.lock 7 7 .DS_Store 8 - .claude 9 - .claude* 10 - CLAUDE.md
+1 -1
.nova/Configuration.json
··· 1 1 { 2 2 "editor.default_syntax" : "liquid-html", 3 3 "workspace.color" : 8, 4 - "workspace.name" : "Linus", 4 + "workspace.name" : "🧱 Linus", 5 5 "workspace.preview_append_paths" : false, 6 6 "workspace.preview_type" : "custom", 7 7 "workspace.preview_url" : "http:\/\/localhost:4000"
-28
.tangled/workflows/deploy.yml
··· 1 - when: 2 - - event: ["push"] 3 - branch: ["main"] 4 - 5 - engine: "nixery" 6 - 7 - clone: 8 - depth: 1 9 - 10 - dependencies: 11 - nixpkgs: 12 - - ruby_3_3 13 - - wrangler 14 - - bundler 15 - - gcc 16 - - gnumake 17 - - openssl 18 - - pkg-config 19 - 20 - steps: 21 - - name: "Install gems" 22 - command: "bundle install" 23 - 24 - - name: "Build site" 25 - command: "bundle exec jekyll build" 26 - 27 - - name: "Deploy to Cloudflare Pages" 28 - command: "wrangler pages deploy _site --project-name=linus --branch=main"