rshtml_core 0.2.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@extends

  <div>
    extends content @self.value
  </div>

@section('title', "extends title")

@section footer {
  <p>extends footer</p>
  <div>
    @self.data
    @self.value
  </div>
}