Add include example

This commit is contained in:
2023-10-29 19:56:15 -07:00
parent e3770adc87
commit 1c87deb61b
8 changed files with 169 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
<html>
#include("head.html")
<body>
#include("header.html")
<section class="hero is-fullheight-with-navbar">
<div class="hero-head">
<div class="container">
<p class="title has-text-centered mt-2">About Salix</p>
<p>
Salix (pronounced <i>say-lix</i>) is a Go templating engine inspired by <a href="https://github.com/vapor/leaf">Leaf</a>.
<br><br>
Salix's syntax is similar to Leaf and (in my opinion at least), it's much more fun to write than the Go template syntax. If you like this project, please star its repo. I hope you enjoy! :)
</p>
</div>
</div>
</section>
#include("footer.html")
</body>
</html>