mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-16 06:29:08 +00:00
3c07cf96df
This commit improves and changes the templating library in the following ways: * Templates are now registered/loaded at initialization. * No synchronization is required to read templates. * All templates are properly loaded (fixes #122). * Tera templates are given the proper name: `index`, not `index.html.tera`. * Rendering tests added for both templating engines. There is one breaking change: * Tera templates are given the proper name: `index`, not `index.html.tera`.
6 lines
132 B
Plaintext
6 lines
132 B
Plaintext
{% extends "tera/base" %}
|
|
{% block title %}{{ title }}{% endblock title %}
|
|
{% block content %}
|
|
{{ content }}
|
|
{% endblock content %}
|