Skip to content

Instantly share code, notes, and snippets.

@docsallover
Created February 5, 2026 10:57
Show Gist options
  • Select an option

  • Save docsallover/f1fa02ad2934498edde7c531f76dabb4 to your computer and use it in GitHub Desktop.

Select an option

Save docsallover/f1fa02ad2934498edde7c531f76dabb4 to your computer and use it in GitHub Desktop.
Conditional Logic (@if)
@if (user.isLoggedIn) {
<p>Welcome back, {{ user.name }}!</p>
} @else if (user.isGuest) {
<p>Please sign up.</p>
} @else {
<p>Identify yourself.</p>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment