discourse/app/views/exceptions/not_found.html.erb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.2 KiB
Plaintext
Raw Normal View History

<div class="page-not-found">
<h1 class="title"><%= @title %></h1>
<%- if !@current_user %>
<a href="<%= path "/login" %>" class='btn btn-primary'><%= SvgSprite.raw_svg('fa-user') %><%= I18n.t('log_in') %></a>
<%- end %>
<%- if @group&.allow_membership_requests %>
<a href="<%= group_path @group.name %>" class='btn btn-primary'><%= SvgSprite.raw_svg('user-plus') %> <%= I18n.t('not_in_group.request_membership') %></a>
<%- elsif @group&.public_admission %>
<a href="<%= group_path @group.name %>" class='btn btn-primary'><%= SvgSprite.raw_svg('user-plus') %> <%= I18n.t('not_in_group.join_group') %></a>
<%- end %>
</div>
<%= build_plugin_html 'server:not-found-before-topics' %>
2017-11-14 11:57:17 -05:00
2019-02-12 05:20:33 -05:00
<%= @topics_partial %>
<%- unless @hide_search%>
2014-04-29 15:17:40 -04:00
<div class="row">
2017-11-24 12:41:31 -05:00
<div class="page-not-found-search">
2014-09-06 04:01:05 -04:00
<h2><%= t 'page_not_found.search_title' %></h2>
2014-04-29 15:17:40 -04:00
<p>
2020-07-01 09:57:52 -04:00
<form action='<%= path "/search" %>' id='discourse-search'>
<input type="text" name="q" value="<%= @slug %>">
<button class="btn btn-primary"><%= t 'page_not_found.search_button' %></button>
2014-04-29 15:17:40 -04:00
</form>
</p>
</div>
</div>
<%= preload_script('onpopstate-handler') %>
2014-04-29 15:17:40 -04:00
<%- end %>