* Remove extra character from meta_keywords in /listings/index.html.erb * Remove meta_keywords from MANDATORY_CONFIGS * Add and use meta_keywords_tag helper * Use modern tag syntax instead of deprecated syntax * Add and use meta_keywords_default helper * Add and use meta_keywords_article helper * Remove * from meta_keywords_field.label * Update meta_keyword specs to account for no keywords being set
17 lines
981 B
Text
17 lines
981 B
Text
<% title title_string %>
|
|
<link rel="canonical" href="<%= app_url("/about") %>" />
|
|
<meta name="description" content="<%= title_string %> on <%= community_name %>">
|
|
<%= meta_keywords_default %>
|
|
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:url" content="<%= app_url("/about") %>" />
|
|
<meta property="og:title" content="About <%= community_name %>" />
|
|
<meta property="og:image" content="<%= SiteConfig.main_social_image %>" />
|
|
<meta property="og:description" content="<%= community_qualified_name %> is great!" />
|
|
<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="About <%= community_name %>">
|
|
<meta name="twitter:description" content="<%= community_qualified_name %> is great!">
|
|
<meta name="twitter:image:src" content="<%= SiteConfig.main_social_image %>">
|