| title | HTML First Rails |
|---|
H1 Rails is the quickest way to make beautiful web apps with minimal complexity. It uses Ruby on Rails, but centers on HTML, CSS, and Javascript, with the goal of being extremely approachable to developers who are new to Rails.
* Clean, consistent styling for all form input types.* Support for multi-select, tag select, type to search.
* Code examples for commonly used patterns e.g nested relationships
[Turbo](https://turbo.hotwired.dev/) is disabled by default. Instead the app is [boosted](https://htmx.org/attributes/hx-boost/) by htmx. This means you can just use normal rails `link_to` and `form_for` tags, and the app will handle smooth page transitions.
You can of course turn on Turbo, Stimulus if you would prefer to keep them.
* You want a quick, simple boilerplate for building web apps.
* You’re interested in the html-over-the-wire approach for its conceptual simplicity, but want a quicker way to dive in than learning Turbo and Stimulus.
* You already know Rails, and have heard about the promise of HTMX and the Hypertext approach.
* You’ve seen some of the examples of what can be built with it