github.com/stephannv/blueprint

A lib for writing reusable and testable views templates (HTML, SVG, Forms) in plain Crystal. Inspired by Phlex.

86 stars
7 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  blueprint:
    github: stephannv/blueprint
    version: ~> 1.1.0

Then run:

shards install

shard.yml

Crystal
~> 1.9
License
MIT
Author
Stephann V.

Dependencies

Development Dependencies

  • ameba1.6.4github: crystal-ameba/amebadev

README


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_s

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