1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/templating/handlebars/static/templates/index.html

13 lines
198 B
HTML
Raw Normal View History

2019-06-08 19:47:39 +02:00
<!DOCTYPE html>
<html>
<head>
<title>{{name}} Example</title>
</head>
<body>
<h1>{{name}} example</h1>
2022-03-08 16:49:32 +01:00
<p>This is an example of how to use {{name}} with Actix Web.</p>
2019-06-08 19:47:39 +02:00
</body>
</html>