15 lines
379 B
Text
15 lines
379 B
Text
<%= if @is_authenticated do %>
|
|
<Layouts.authenticated
|
|
flash={@flash}
|
|
current_scope={@current_scope}
|
|
active_page="help"
|
|
>
|
|
<.help_content active_section={@active_section} />
|
|
</Layouts.authenticated>
|
|
<% else %>
|
|
<Layouts.app flash={@flash}>
|
|
<div class="py-8">
|
|
<.help_content active_section={@active_section} />
|
|
</div>
|
|
</Layouts.app>
|
|
<% end %>
|