blueprint
Version, currently 1.1.014 versions
- 1.1.0latestJan 5, 2026
- 1.0.0not indexedJan 5, 2026
- 0.11.0not indexedJan 5, 2026
- 0.10.0not indexedJan 5, 2026
- 0.9.0not indexedJan 5, 2026
- 0.8.0not indexedJan 5, 2026
- 0.7.0not indexedJan 5, 2026
- 0.6.0not indexedJan 5, 2026
- 0.5.1not indexedJan 5, 2026
- 0.5.0not indexedJan 5, 2026
- 0.4.0not indexedJan 5, 2026
- 0.3.0not indexedJan 5, 2026
- 0.2.0not indexedJan 5, 2026
- 0.1.0not indexedJan 5, 2026
github.com/stephannv/blueprint
A lib for writing reusable and testable views templates (HTML, SVG, Forms) in plain Crystal. Inspired by Phlex.
84 stars
1 dependent
License: MIT
Installation
# Add this to your shard.yml
dependencies:
blueprint:
github: stephannv/blueprint
version: ~> 1.1.0Then run:
shards installshard.yml
- Crystal
~> 1.9- License
- MIT
- Author
- Stephann V. <3025661+stephannv@users.noreply.github.com>
Dependencies
Development Dependencies
- ameba1.6.4github: crystal-ameba/amebadev
README
<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>
<img src="https://img.shields.io/badge/0-dependencies-blue" alt="Zero dependencies">
</p>
------
Example:
```crystal
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:
```html
<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
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
1.1.0- Tagged
- Jan 5, 2026
- Commit
8d05048ae405- Crystal
~> 1.9- Indexed
- yes
Dependents
Repository
github.com/stephannv/blueprint
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 14