Awesome
<p align="center"> <a href="https://stephannv.github.io/blueprint-docs/" target="_blank"> <picture> <img alt="Blueprint logo" src="https://raw.githubusercontent.com/stephannv/blueprint/HEAD/.github/blueprint-logo.svg" width="200" height="200" style="max-width: 100%;" > </picture> </a> </p> <p align="center"> A lib for writing reusable and testable views templates (HTML, SVG, Forms) in plain Crystal. </p> <p align="center"> <a href="https://github.com/stephannv/blueprint/actions/workflows/ci.yml"><img src="https://github.com/stephannv/blueprint/actions/workflows/ci.yml/badge.svg" alt="Tests"></a> <a href="https://github.com/stephannv/blueprint/actions/workflows/weekly.yml"><img src="https://github.com/stephannv/blueprint/actions/workflows/weekly.yml/badge.svg" alt="Weekly CI"></a> </p>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
- Fork it (https://github.com/stephannv/blueprint/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request