blueprint v0.4.0

Write HTML in plain Crystal

Blueprint logo

A framework for writing reusable and testable HTML templates in plain Crystal.

Tests & Code Format Weekly CI


Example:

class Alert
  include Blueprint::HTML

  private def blueprint
    div class: "alert alert-success" do
      h4(class: "alert-heading") { "Well done!" }
      p { "Hello Word" }
    end
  end
end

Alert.new.to_html

Output:

<div class="alert alert-success">
  <h4 class="alert-heading">Well done!</h4>
  <p>Hello World</p>
</div>

Documentation

For full documentation, visit https://stephannv.github.io/blueprint-docs/.

Contributing

  1. Fork it (https://github.com/stephannv/blueprint/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
Repository

blueprint

Owner
Statistic
  • 37
  • 0
  • 0
  • 3
  • 1
  • 7 months ago
  • March 17, 2023
License

MIT License

Links
Synced at

Wed, 24 Apr 2024 10:34:36 GMT

Languages