{"id":13597384,"url":"https://github.com/khuedoan/blog","last_synced_at":"2025-07-16T08:10:52.259Z","repository":{"id":105827180,"uuid":"324508105","full_name":"khuedoan/blog","owner":"khuedoan","description":"My personal website (written in Rust, blazingly fast, deployed on Kubernetes, \u003cinsert a bunch of random buzzwords here\u003e, just lack content)","archived":false,"fork":false,"pushed_at":"2025-04-24T07:38:34.000Z","size":3750,"stargazers_count":23,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-30T16:05:14.605Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://khuedoan.com","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/khuedoan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["khuedoan"],"ko_fi":"khuedoan","liberapay":"khuedoan","custom":["https://paypal.me/khuedoan"]}},"created_at":"2020-12-26T07:53:02.000Z","updated_at":"2025-04-26T09:25:01.000Z","dependencies_parsed_at":"2023-10-28T08:19:45.134Z","dependency_job_id":"a709e8b6-dab0-400e-a2a8-c7155022cf30","html_url":"https://github.com/khuedoan/blog","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/khuedoan/blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khuedoan%2Fblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khuedoan%2Fblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khuedoan%2Fblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khuedoan%2Fblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khuedoan","download_url":"https://codeload.github.com/khuedoan/blog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khuedoan%2Fblog/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265495453,"owners_count":23776632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T17:00:31.748Z","updated_at":"2025-07-16T08:10:52.224Z","avatar_url":"https://github.com/khuedoan.png","language":"Rust","funding_links":["https://github.com/sponsors/khuedoan","https://ko-fi.com/khuedoan","https://liberapay.com/khuedoan","https://paypal.me/khuedoan"],"categories":["Rust","Blogs / Websites"],"sub_categories":["Unofficial"],"readme":"# [khuedoan.com](https://khuedoan.com) ![status](https://img.shields.io/website?label=status\u0026style=flat-square\u0026url=https%3A%2F%2Fkhuedoan.com)\n\nThis is the source code of my personal website at [khuedoan.com](https://khuedoan.com), built with:\n\n- [Rust](https://www.rust-lang.org)\n- [Axum](https://github.com/tokio-rs/axum)\n- [Maud](https://maud.lambda.xyz)\n- [Pico CSS](https://picocss.com)\n- [HTMX](https://htmx.org)\n\nYou can check out older branches for previous implementations:\n\n- [Rust/Axum/Leptos/WASM/Tailwind CSS](https://github.com/khuedoan/blog/tree/leptos) (2023)\n- [Next.js/Tailwind CSS](https://github.com/khuedoan/blog/tree/nextjs) (2023)\n- [Hugo/PaperMod](https://github.com/khuedoan/blog/tree/hugo) (2021)\n- Plain HTML (2020)\n\n## Project structure\n\n- `content/`: content written in Markdown\n- `src/`: pages and components\n- `public/`: static assets\n- `build.rs`: build logic for rendering Markdown to HTML\n\n## Content convention\n\n```\ncontent\n└── posts\n    └── example-post.md\npublic\n├── any-static-file-here.txt\n└── images\n    ├── avatar.jpg\n    └── cat-picture.jpg\n```\n\nPosts are placed in `content/posts`, each post is a Markdown file. Here's an example post:\n\n```\n## Example heading\n\n![Files inside `./public` can be referenced by your code starting from the base URL](/images/cat-picture.webp)\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit,\nsed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n```\n\n## Development\n\nOpen a shell that provides the build environment (requires Nix):\n\n```\nnix develop\n```\n\nRun the development server:\n\n```\nmake dev\n```\n\nThen open \u003chttp://localhost:3000\u003e.\n\n## Deployment\n\n- Kubernetes configuration:\n    - \u003chttps://github.com/khuedoan/horus/tree/master/apps/blog\u003e\n    - \u003chttps://github.com/khuedoan/homelab/tree/master/apps/blog\u003e\n\n## Acknowledgements\n\n- [Axum examples](https://github.com/tokio-rs/axum/blob/main/examples): code examples\n- [Making a dev shell with nix flakes](https://fasterthanli.me/series/building-a-rust-service-with-nix/part-10): Nix flake\n- [Comment by ScottAbbey in pulldown-cmark#167](https://github.com/pulldown-cmark/pulldown-cmark/issues/167#issuecomment-448491422) and [eguiraud/highlight-pulldown](https://gitlab.com/eguiraud/highlight-pulldown): Syntax highlighting for Markdown using `pulldown-cmark` and `syntect`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhuedoan%2Fblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhuedoan%2Fblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhuedoan%2Fblog/lists"}