{"id":26221400,"url":"https://github.com/amarjithtk/eleventy_tailwind_template","last_synced_at":"2026-04-11T03:31:08.946Z","repository":{"id":282029031,"uuid":"947247607","full_name":"AmarjithTK/eleventy_tailwind_template","owner":"AmarjithTK","description":"Eleventy Tailwind Template A starter template combining Eleventy (11ty) static site generator with Tailwind CSS for creating fast, modern websites with minimal effort.","archived":false,"fork":false,"pushed_at":"2025-04-23T16:57:37.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T17:49:35.152Z","etag":null,"topics":["eleventy","nunjucks","postcss","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AmarjithTK.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-03-12T11:41:37.000Z","updated_at":"2025-04-23T16:57:41.000Z","dependencies_parsed_at":"2025-03-12T12:33:04.708Z","dependency_job_id":"b1e565ca-2930-4d52-b801-d7807d5ed435","html_url":"https://github.com/AmarjithTK/eleventy_tailwind_template","commit_stats":null,"previous_names":["amarjithtk/eleventy_tailwind_template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AmarjithTK/eleventy_tailwind_template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmarjithTK%2Feleventy_tailwind_template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmarjithTK%2Feleventy_tailwind_template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmarjithTK%2Feleventy_tailwind_template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmarjithTK%2Feleventy_tailwind_template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmarjithTK","download_url":"https://codeload.github.com/AmarjithTK/eleventy_tailwind_template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmarjithTK%2Feleventy_tailwind_template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272315670,"owners_count":24912615,"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","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["eleventy","nunjucks","postcss","tailwindcss"],"created_at":"2025-03-12T16:20:07.187Z","updated_at":"2025-12-30T21:35:38.324Z","avatar_url":"https://github.com/AmarjithTK.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Eleventy Tailwind Template\n\nA starter template combining [Eleventy](https://www.11ty.dev/) (11ty) static site generator with [Tailwind CSS](https://tailwindcss.com/) for creating fast, modern websites with minimal effort.\n\n## Features\n\n- **Eleventy** - A simpler static site generator\n- **Tailwind CSS** - A utility-first CSS framework\n- **PostCSS** - For processing Tailwind and other CSS needs\n- **Nunjucks Templates** - Powerful templating engine\n- **Fast Development** - Hot reloading during development\n- **Optimized Production Build** - Minified assets for production\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (version 14 or newer)\n- npm or yarn\n\n### Installation\n\n1. Clone this repository:\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd eleventy_tailwind_template\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n### Development\n\nStart the development server:\n\n```bash\nnpm run start\n```\n\nThis will start Eleventy with hot-reloading and serve your site at `http://localhost:8080`.\n\n### Production Build\n\nBuild the site for production:\n\n```bash\nnpm run build\n```\n\nThe output will be in the `_site` directory.\n\n## Project Structure\n\n```\neleventy_tailwind_template/\n├── .eleventy.js          # Eleventy configuration\n├── tailwind.config.js    # Tailwind CSS configuration\n├── postcss.config.mjs    # PostCSS configuration\n├── package.json          # Project dependencies and scripts\n├── src/                  # Source files\n│   ├── _includes/        # Template partials and layouts\n│   │   └── header.njk    # Header component\n│   ├── css/              # CSS files\n│   │   └── style.css     # Main CSS file with Tailwind imports\n│   ├── js/               # JavaScript files\n│   ├── about/            # About page directory\n│   └── index.njk         # Homepage template\n└── _site/                # Generated site (not in version control)\n```\n\n## Template Usage\n\nThe project uses Nunjucks for templating. Example from index.njk:\n\n```html\n\u003c!--\n\n{% include \"header.njk\" %}\n\n\n{% set assetsPath = \"\" %}\n{% if page.url and page.url != \"/\" %}\n  {% set assetsPath = \"../\" %}\n{% endif %} \n\n\n\u003ca href=\"{{ assetsPath }}about/\" \n\n\n--\u003e\n```\n\nThis demonstrates:\n- Including components (header.njk)\n- Dynamic path handling based on page location\n- Relative linking between pages\n\n## Customization\n\n### Tailwind Configuration\n\nModify `tailwind.config.js` to customize your design system including colors, fonts, and more.\n\n### Eleventy Configuration\n\nAdjust `.eleventy.js` to configure template languages, directories, and plugins.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgements\n\n- [Eleventy](https://www.11ty.dev/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [PostCSS](https://postcss.org/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famarjithtk%2Feleventy_tailwind_template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famarjithtk%2Feleventy_tailwind_template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famarjithtk%2Feleventy_tailwind_template/lists"}