* Added configurable meta keywords * Replaced hardcoded meta-keywords with the configurable ones * Added tests for configurable meta_keywords * Improve info for configuring meta-keywords
28 lines
1.2 KiB
Text
28 lines
1.2 KiB
Text
<% title "Report abuse" %>
|
|
<%= content_for :page_meta do %>
|
|
<link rel="canonical" href="<%= app_url("/report-abuse") %>" />
|
|
<meta name="description" content="Report Abuse">
|
|
<meta name="keywords" content="<%= SiteConfig.meta_keywords[:default] %>">
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:url" content="<%= app_url("/report-abuse") %>" />
|
|
<meta property="og:title" content="Report Abuse" />
|
|
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
|
<meta name="twitter:title" content="Report Abuse">
|
|
<% end %>
|
|
|
|
<div class="blank-space"></div>
|
|
|
|
<div class="container article">
|
|
<div class="title">
|
|
<h1>Report Abuse</h1>
|
|
</div>
|
|
<div class="body">
|
|
<p>
|
|
Thank you for reporting any abuse that violates our <a href="/code-of-conduct">code of conduct</a> or
|
|
<a href="/terms">terms and conditions</a>. We continue to try to make this environment a great one for everybody.
|
|
</p>
|
|
<%= render "feedback_messages/form", feedback_message: @feedback_message %>
|
|
</div>
|
|
</div>
|