27 lines
838 B
Plaintext
27 lines
838 B
Plaintext
<%= content_for(:html_head) do %>
|
|
<% description = "A hand picked image api, for furries." %>
|
|
<%= render "head_images",
|
|
manifest_path: yiff_rest_home_manifest_path(:json)
|
|
%>
|
|
<%= render "twitter_card",
|
|
card_creator: "@Donovan_DMC",
|
|
card_description: description,
|
|
card_image: image_path("#{assets_path}/Blep.png"),
|
|
card_image_alt: "YiffyAPI Icon"
|
|
%>
|
|
|
|
<%= render "dublin_core",
|
|
dc_creator: "Donovan_DMC",
|
|
dc_description: description
|
|
%>
|
|
|
|
<%= render "open_graph",
|
|
og_description: description,
|
|
og_image: image_path("#{assets_path}/Blep.png"),
|
|
og_image_type: "image/png",
|
|
og_image_width: 710,
|
|
og_image_height: 710,
|
|
og_image_alt: "YiffyAPI Icon"
|
|
%>
|
|
<% end %>
|