salix/examples/include/tmpls/home.html

19 lines
588 B
HTML
Raw Normal View History

2023-10-30 02:56:15 +00:00
<html>
#include("head.html")
<body>
#include("header.html")
<section class="hero is-fullheight-with-navbar">
<div class="hero-body">
<div class="container">
2023-10-30 15:52:02 +00:00
<p class="title">Hello, #(name | "World")!</p>
2023-10-30 02:56:15 +00:00
<p class="subtitle">This is a demo of the Salix template engine.</p>
<a class="button is-link is-rounded" href="/about">About &rarr;</a>
</div>
</div>
</section>
#include("footer.html")
</body>
</html>