mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
33 lines
987 B
Plaintext
33 lines
987 B
Plaintext
<!-- SEO -->
|
|
<%=
|
|
# This belongs inside the <head> tag.
|
|
# Default values and pointers here only.
|
|
# Most content should be set in the pages themselves.
|
|
# Any values set here can be overridden.
|
|
|
|
# Default & site-wide values
|
|
|
|
display_meta_tags site: 'Notebook.ai',
|
|
publisher: 'https://www.facebook.com/IndentLabs',
|
|
image_src: image_url('logos/both-original.png'),
|
|
description: 'Notebook.ai is a set of tools for writers, game designers, and roleplayers to create magnificent universes — and everything within them.',
|
|
# Recommended keywords tag length: up to 255 characters, 20 words.
|
|
keywords: %w[writing author nanowrimo novel character fiction fantasy universe creative dnd roleplay larp game design],
|
|
og: {
|
|
title: :title,
|
|
site_name: 'Notebook.ai',
|
|
url: request.url,
|
|
image: :image_src,
|
|
description: :description,
|
|
},
|
|
twitter: {
|
|
card: 'summary',
|
|
title: :title,
|
|
site: '@IndentLabs',
|
|
image: :image_src,
|
|
url: request.url,
|
|
description: :description
|
|
}
|
|
%>
|
|
<!-- End SEO -->
|