Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A simple landing page built with 11ty and Tailwind CSS.
11ty Landing Page is a Boilerplate template that combines the Eleventy static site generator with Tailwind CSS to produce a lightweight, multi-page landing site with no JavaScript framework required.
11ty Landing Page is a static landing page template built with Eleventy (version 0.12.1) and Tailwind CSS, created by ttntm. It takes content stored in Markdown files, a JSON features file, and Nunjucks partial templates, then builds a static HTML site that includes a landing page, an imprint page, and a privacy page. The source is an open repository on GitHub, and the same author also publishes equivalent templates for Astro and Hugo.
tailwind.config.js; the build is triggered by src/css/page.11ty.js.src/includes, each section has its own section.**.njk file, and src/index.njk controls which sections appear and in what order.netlify.toml file is included so the project can be deployed to Netlify with a single push.imprint.md and privacy.md; landing page features are defined in src/_data/features.json and section text in src/sections/.static/img are placeholders intended to be replaced with production assets during customization.npm install sets up the entire build.Developers who want a no-framework static landing page using Eleventy and Tailwind will find this a ready starting point. It is also useful for anyone learning how to wire Tailwind's JIT mode into an Eleventy build through PostCSS, since the configuration is fully exposed in src/css/page.11ty.js. Freelancers or agencies that need a quick client landing page can fork the repo, swap in images and copy, and deploy to Netlify using the provided netlify.toml.
src/includes to alter the layout of each landing page section, or reorder sections in src/index.njk.src/_data/features.json, and change the imprint and privacy page texts in the Markdown files, without touching template code.static/img and adjust utility classes in the templates to match a brand visual style.netlify.toml makes Netlify deployment zero-configuration.To set up the project, fork or clone the repository, then run npm install and npm run serve. This starts a local dev server at http://localhost:8080. The CSS build is handled by PostCSS and Tailwind's JIT compiler, triggered by src/css/page.11ty.js, and the pages are generated by Eleventy from Nunjucks layouts. For production, the site can be built and deployed directly to Netlify thanks to the included configuration.
The project is hosted on GitHub and the README says to fork, clone, or download it for your own use, indicating it is free of charge.
Eleventy (11ty) is a Node.js static site generator that compiles Markdown, JSON, and Nunjucks templates into plain HTML. This template specifies Eleventy version 0.12.1.
No, it includes only a landing page, an imprint page, and a privacy page, with no blog collection or CMS integration. Content is managed through Markdown files and a JSON data file.
