summaryrefslogtreecommitdiff
path: root/src/server/web/views/note.pug
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/web/views/note.pug')
-rw-r--r--src/server/web/views/note.pug43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/server/web/views/note.pug b/src/server/web/views/note.pug
deleted file mode 100644
index 7030936975..0000000000
--- a/src/server/web/views/note.pug
+++ /dev/null
@@ -1,43 +0,0 @@
-extends ./base
-
-block vars
- - const user = note.user;
- - const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
- - const url = `${config.url}/notes/${note.id}`;
-
-block title
- = `${title} | ${instanceName}`
-
-block desc
- meta(name='description' content= summary)
-
-block og
- meta(property='og:type' content='article')
- meta(property='og:title' content= title)
- meta(property='og:description' content= summary)
- meta(property='og:url' content= url)
- meta(property='og:image' content= user.avatarUrl)
-
-block meta
- if user.host || profile.noCrawle
- meta(name='robots' content='noindex')
-
- meta(name='misskey:user-username' content=user.username)
- meta(name='misskey:user-id' content=user.id)
- meta(name='misskey:note-id' content=note.id)
-
- meta(name='twitter:card' content='summary')
-
- // todo
- if user.twitter
- meta(name='twitter:creator' content=`@${user.twitter.screenName}`)
-
- if note.prev
- link(rel='prev' href=`${config.url}/notes/${note.prev}`)
- if note.next
- link(rel='next' href=`${config.url}/notes/${note.next}`)
-
- if !user.host
- link(rel='alternate' href=url type='application/activity+json')
- if note.uri
- link(rel='alternate' href=note.uri type='application/activity+json')