Unexpected {{else}} issue

While processing files with templating-compiler (for target web.browser):
client/main.html:14: Unexpected {{else}}
…tForm}} {{else}} <div c…

Source Code:–

Galaxy

Welcome to Galaxy!

{{> upload_bootstrap }}

{{if currentUser}}

  {{> logoutForm}}

{{else}}

    <div class="container">
      <div class="row">
        <div class="col-md-6 col-lg-6">
            {{> loginForm}}
        </div>
      <div class="col-md-6 col-lg-6">
        {{> signupForm}}
      </div>
    </div>
    <div class="row">
      {{> recovery}}
    </div>
  </div>

{{/if}}

You should be using {{#if, not {{if

1 Like