salix/examples/readme
2023-10-30 18:43:18 -07:00
..
main.go Add GPL headers 2023-10-30 18:43:18 -07:00
readme.salix.html Initial Commit 2023-10-28 18:10:17 -07:00

<html>
    <head>
        <title>#(page.Title)</title>
    </head>
    <body>
        #for(i, user in users):
        <div>
            <h2>#(toLower(user.Name))</h2>
            <p>User ID: #(i)</p>
            #if(user.LoggedIn): <p>This user is logged in</p> #!if
            #if(user.IsAdmin): <p>This user is an admin!</p> #!if
            <p>Registered: #(user.RegisteredTime.Format("01-02-2006"))</p>
        </div>
        #!for
    </body>
</html>