November 2018
Intermediate to advanced
404 pages
10h 16m
English
Vapor template uses #if(){} else {} to check a condition, as in the following example:
#set("guest") { John }#if(user == guest) { You're welcome.} else { Sorry, this site is not open to public.}
When the tag is part of your condition, you can omit # for the inner tag, like this:
#if(lowercase(user) == lowercase(guest)) { ...}
Read now
Unlock full access