Static media hosting for ESPHome websites, code repositories, and related projects. This website provides a centralized location for logos, badges, fonts, and other assets used across the ESPHome ecosystem.
This is a simple static website built with 11ty that automatically generates a file tree of all assets in the assets/ directory. All assets are served from the root of the site at https://media.esphome.io.
- Automatic file tree generation - Browse all available assets with an interactive tree view
- Clickable file links - Direct links to download or view any asset
- License documentation - Clear licensing information for all hosted assets
- Simple build process - Static site generation with 11ty
media.esphome.io/
├── .eleventy.js # 11ty configuration
├── package.json # Node.js dependencies
├── assets/ # Media files (merged to root at build)
│ ├── LICENSE.md # License information for assets
│ ├── logo/ # ESPHome logos
│ ├── made-for-esphome/ # "Made for ESPHome" badges
│ └── ...
└── src/ # Source files
├── index.md # Homepage (markdown)
└── _includes/
└── base.njk # Base HTML template
- Node.js (v14 or higher)
- npm
npm installBuild the static site:
npm run buildThe built site will be in the _site/ directory.
Start a local development server with live reload:
npm run serveThe site will be available at http://localhost:8080.
Remove the built site:
npm run clean- Place your media files in the appropriate subdirectory under
assets/ - Run
npm run buildto regenerate the site - The file tree will automatically update to include your new assets
Assets will be accessible at:
https://media.esphome.io/<path-relative-to-assets>
For example:
assets/logo/logo.svg→https://media.esphome.io/logo/logo.svgassets/fonts/custom.woff2→https://media.esphome.io/fonts/custom.woff2
The code for this website is licensed under the Apache License 2.0 (see LICENSE).
Important: The assets in the assets/ directory are NOT covered by this license. See assets/LICENSE.md for details on asset licensing.
The _site/ directory contains the complete static website ready for deployment to any static hosting service (Netlify, Vercel, GitHub Pages, etc.).