All Projects → yhaefliger → YATAS

yhaefliger / YATAS

Licence: MIT license
Yet Another Tailwind Alpine Starter

Programming Languages

javascript
184084 projects - #8 most used programming language
Nunjucks
165 projects
CSS
56736 projects

Projects that are alternatives of or similar to YATAS

eleventy solo starter njk
Further development suspended as of 2021-09-11. Please refer instead to https://www.11ty.dev/docs/starter/ for a wide selection of other Eleventy starter sets.
Stars: ✭ 22 (+22.22%)
Mutual labels:  starter-template, tailwindcss, eleventy
trailing-slash-guide
Understand and fix your static website trailing slash issues!
Stars: ✭ 255 (+1316.67%)
Mutual labels:  netlify, eleventy
bymattlee-11ty-starter
A starter boilerplate powered by 11ty, Sanity, Gulp, Tailwind CSS, rollup.js, Alpine.js and Highway.
Stars: ✭ 27 (+50%)
Mutual labels:  eleventy, alpinejs
guild
Guild - Build Your Guild and award employees with Crypto 💰
Stars: ✭ 3 (-83.33%)
Mutual labels:  tailwindcss, alpinejs
frontenso-11ty-starter
Production-ready 11ty+Gulp+Webpack Starter that features Nunjucks, SASS, TailwindCSS (with JIT complier), and ESNext.
Stars: ✭ 24 (+33.33%)
Mutual labels:  starter-template, eleventy
axiom
Axiom - A Hugo Theme. GitTip: https://gitcoin.co/tip?username=jhauraw
Stars: ✭ 67 (+272.22%)
Mutual labels:  netlify, alpinejs
svelte-commerce
Svelte ecommerce - Headless, Authentication, Cart & Checkout, TailwindCSS, Server Rendered, Proxy + API Integrated, Animations, Stores, Lazy Loading, Loading Indicators, Carousel, Instant Search, Faceted Filters, Typescript, Open Source, MIT license. 1 command deploy to your own server, 1 click deploy to netlify.
Stars: ✭ 695 (+3761.11%)
Mutual labels:  netlify, tailwindcss
Next Js Blog Boilerplate
🚀 Nextjs Blog Boilerplate is starter code for your blog based on Next framework. ⚡️ Made with Nextjs, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS.
Stars: ✭ 134 (+644.44%)
Mutual labels:  starter-template, netlify
tailwind-react-next.js-typescript-eslint-jest-starter
Starter template for building a project using React, Typescript, Next.js, Jest, TailwindCSS and ESLint.
Stars: ✭ 80 (+344.44%)
Mutual labels:  starter-template, tailwindcss
virtual-lolly
JAMstack demo site - prerendered with serverless API fallbacks
Stars: ✭ 110 (+511.11%)
Mutual labels:  netlify, eleventy
website
Gitpod website and documentation
Stars: ✭ 233 (+1194.44%)
Mutual labels:  netlify, tailwindcss
Hugo Theme Tailwindcss Starter
Starter files for a Hugo theme with Tailwindcss
Stars: ✭ 187 (+938.89%)
Mutual labels:  starter-template, tailwindcss
Admin Template
Tailwind CSS Starter Template - Admin Dashboard Template
Stars: ✭ 160 (+788.89%)
Mutual labels:  starter-template, tailwindcss
11straps
11straps is a static website boilerplate. It combines Eleventy with Bootstrap 5. 🎉
Stars: ✭ 85 (+372.22%)
Mutual labels:  netlify, eleventy
Gatsby Starter Netlify Cms
Example gatsby + netlify cms project
Stars: ✭ 1,932 (+10633.33%)
Mutual labels:  starter-template, netlify
air
A hyper-minimal WordPress starter theme for developers built with Tailwind CSS.
Stars: ✭ 45 (+150%)
Mutual labels:  starter-template, tailwindcss
craft-3
Boilerplate with Craft CMS, Tailwind CSS, VueJS & Alpine.js used for internal projects.
Stars: ✭ 34 (+88.89%)
Mutual labels:  tailwindcss, alpinejs
Profile Card
Tailwind CSS Starter Template - Profile Card (Single page website for your profile/links)
Stars: ✭ 69 (+283.33%)
Mutual labels:  starter-template, tailwindcss
Ghostwind
Tailwind CSS Starter Template - Ghostwind (Ghost Casper theme in Tailwind CSS)
Stars: ✭ 89 (+394.44%)
Mutual labels:  starter-template, tailwindcss
tall-toasts
A Toast notification library for the Laravel TALL stack. You can push notifications from the backend or frontend to render customizable toasts with almost zero footprint on the published CSS/JS 🔥🚀
Stars: ✭ 296 (+1544.44%)
Mutual labels:  tailwindcss, alpinejs

YATAS - Yet Another Tailwind Apline Starter

YATAS Logo

Minimal 11ty starter project that build css with tailwindcss cli and esbuild for javascript.

Demo

Deploy to Netlify

Stack

  • TailwindCSS v3
  • Apline.js v3

Install

npm install

Local dev

npm run start

Build

Minified production build

npm run build

Assets versioning

This starter includes a small js script to which can add a hash to your assets when building for production builds. The script will look for files to include a hash (based on the md5 of the built file content) eg: styles.734a7607648afdb.css instead of styles.css.

The entry point for matching regular file path to versionned path is generated as an 11ty global data object in _data/hash.json with the simple structure

{
  '/path/to/resource.css': '/path/to/resource.hash.css'
}

In your 11ty template, you can then simply retrieve the versioned path from the array {{ hash['/path/to/resource.css'] | url }}

If you want to add other assets to this generated data array, simply include the path in the assets const in the hash.js file in the root directory (files listed below are already included).

const assets = [
  '/css/styles.css',
  '/js/scripts.js'
];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].