From ee7aa8be76ffe54802ceb5a4b091eac4a23dfb51 Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Wed, 16 Jul 2025 08:37:44 -0400 Subject: [PATCH] Add Open Graph metadata for rich social sharing previews Key additions: - og:title, og:description, og:url, og:type, og:image for Open Graph - twitter:card, twitter:title, twitter:description, twitter:image for Twitter - Uses astronaut/rocket ship tagline for memorable social sharing - Proper property/name attributes for platform compatibility This will enable rich previews when sharing TinyTorch links in Slack, Twitter, etc. --- book/intro.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/book/intro.md b/book/intro.md index 22349499..6ec45e2e 100644 --- a/book/intro.md +++ b/book/intro.md @@ -1,3 +1,17 @@ +--- +html_meta: + "property=og:title": "Tiny🔥Torch: Build your own ML framework from scratch" + "property=og:description": "Learn ML systems by building them. Implement tensors, autograd, optimizers from scratch. Build the rocket ship, don't just be the astronaut." + "property=og:url": "https://mlsysbook.github.io/TinyTorch/" + "property=og:type": "website" + "property=og:image": "https://mlsysbook.github.io/TinyTorch/logo.png" + "property=og:site_name": "Tiny🔥Torch Course" + "name=twitter:card": "summary_large_image" + "name=twitter:title": "Tiny🔥Torch: Build your own ML framework" + "name=twitter:description": "Tiny🔥Torch is a minimalist framework for building machine learning systems from scratch—from tensors to systems." + "name=twitter:image": "https://mlsysbook.github.io/TinyTorch/logo.png" +--- + # Tiny🔥Torch: Build your own Machine Learning framework from scratch. **Most ML education teaches you to _use_ frameworks. TinyTorch teaches you to _build_ them.**