https://github.com/phoenixframework/phoenix_template
Template rendering for Phoenix
https://github.com/phoenixframework/phoenix_template
Last synced: 8 months ago
JSON representation
Template rendering for Phoenix
- Host: GitHub
- URL: https://github.com/phoenixframework/phoenix_template
- Owner: phoenixframework
- License: mit
- Created: 2022-09-24T08:35:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T15:19:42.000Z (11 months ago)
- Last Synced: 2025-06-06T23:07:33.736Z (8 months ago)
- Language: Elixir
- Homepage:
- Size: 37.1 KB
- Stars: 51
- Watchers: 6
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Phoenix.Template
Templates are markup languages that are compiled to Elixir code.
This packages provides functions for loading and compiling templates
from disk as well as the behaviour for compiling markup languages.
See the [`Phoenix.Template`](https://hexdocs.pm/phoenix_template/Phoenix.Template.html)
module documentation for more information.
## Installation
You can install `phoenix_template` by adding it to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:phoenix_template, "~> 1.0"}
]
end
```