metaから内容を削除

This commit is contained in:
nr1a 2024-08-26 07:55:17 +09:00 committed by hijiki
parent bff68634e7
commit c52dab5e62

View File

@ -5,34 +5,34 @@ block vars
- const title = user.name ? `${user.name} (@${user.username}${user.host ? `@${user.host}` : ''})` : `@${user.username}${user.host ? `@${user.host}` : ''}`; - const title = user.name ? `${user.name} (@${user.username}${user.host ? `@${user.host}` : ''})` : `@${user.username}${user.host ? `@${user.host}` : ''}`;
- const url = `${config.url}/notes/${note.id}`; - const url = `${config.url}/notes/${note.id}`;
- const isRenote = note.renote && note.text == null && note.fileIds.length == 0 && note.poll == null; - const isRenote = note.renote && note.text == null && note.fileIds.length == 0 && note.poll == null;
- const images = note.cw ? [] : (note.files || []).filter(file => file.type.startsWith('image/') && !file.isSensitive) - const images = (note.files || []).filter(file => file.type.startsWith('image/') && !file.isSensitive) || []
- const videos = note.cw ? [] : (note.files || []).filter(file => file.type.startsWith('video/') && !file.isSensitive) - const videos = (note.files || []).filter(file => file.type.startsWith('video/') && !file.isSensitive) || []
block title block title
= `${title} | ${instanceName}` = `${title} | ${instanceName}`
block desc //- block desc
meta(name='description' content= summary) //- meta(name='description' content= summary)
block og block og
meta(property='og:type' content='article') meta(property='og:type' content='article')
meta(property='og:title' content= title) meta(property='og:title' content= title)
meta(property='og:description' content= summary) //- meta(property='og:description' content= summary)
meta(property='og:url' content= url) meta(property='og:url' content= url)
if videos.length if videos.length
each video in videos each video in videos
meta(property='og:video:url' content= video.url) //- meta(property='og:video:url' content= video.url)
meta(property='og:video:secure_url' content= video.url) //- meta(property='og:video:secure_url' content= video.url)
meta(property='og:video:type' content= video.type) meta(property='og:video:type' content= video.type)
// FIXME: add width and height // FIXME: add width and height
// FIXME: add embed player for Twitter // FIXME: add embed player for Twitter
if images.length //- if images.length
meta(property='twitter:card' content='summary_large_image') //- meta(property='twitter:card' content='summary_large_image')
each image in images //- each image in images
meta(property='og:image' content= image.url) //- meta(property='og:image' content= image.url)
else //- else
meta(property='twitter:card' content='summary') //- meta(property='twitter:card' content='summary')
meta(property='og:image' content= avatarUrl) //- meta(property='og:image' content= avatarUrl)
block meta block meta