mirror of https://github.com/usbharu/Hideout.git
feat: ogpに対応
This commit is contained in:
parent
f4d30e837e
commit
be07a89b7f
|
@ -1,8 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ja" xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<head prefix="og: http://ogp.me/ns#">
|
||||
<meta charset="UTF-8">
|
||||
<title th:text="#{post-by-id.title(${post.actor.screenName},${instance.name})}">Posts - hideout</title>
|
||||
<meta property="og:url" th:content="${post.url}">
|
||||
<meta property="og:title" th:content="#{post-by-id.title(${post.actor.screenName},${instance.name})}">
|
||||
<meta property="og:description" th:content="${post.text}">
|
||||
<th:block
|
||||
th:if="${post.mediaDetailList.isEmpty() || (post.mediaDetailList.get(0).thumbnailUrl == null && (post.mediaDetailList.get(0).type != 'Image' || post.mediaDetailList.get(0).type != 'Video'))}">
|
||||
<meta property="og:image" th:content="${post.actor.icon}">
|
||||
</th:block>
|
||||
<th:block
|
||||
th:unless="${post.mediaDetailList.isEmpty() || (post.mediaDetailList.get(0).thumbnailUrl == null && (post.mediaDetailList.get(0).type != 'Image' || post.mediaDetailList.get(0).type != 'Video'))}">
|
||||
<meta property="og:image" th:content="${post.mediaDetailList.get(0).thumbnailUrl}">
|
||||
</th:block>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
|
|
Loading…
Reference in New Issue