mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-12 14:46:44 -06:00
d2f8ed95aa
HTMLのタグがエスケープされ、 misskey-hub.netのサーバー一覧で、iframeで読み込む際にタグがそのまま出力される状況が発生していた。 pugにおける仕様に則り、!=に変更、エスケープを行わないように。
50 lines
848 B
Text
50 lines
848 B
Text
doctype html
|
|
|
|
html
|
|
|
|
head
|
|
meta(charset='utf-8')
|
|
meta(name='application-name' content='Misskey')
|
|
title= meta.name || host
|
|
style.
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
background: #fff;
|
|
}
|
|
|
|
#a {
|
|
display: block;
|
|
}
|
|
|
|
#banner {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
#title {
|
|
display: inline-block;
|
|
margin: 24px;
|
|
padding: 0.5em 0.8em;
|
|
color: #fff;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
font-weight: bold;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
#content {
|
|
overflow: auto;
|
|
color: #353c3e;
|
|
}
|
|
|
|
#description {
|
|
margin: 24px;
|
|
}
|
|
|
|
body
|
|
a#a(href=`https://${host}` target="_blank")
|
|
header#banner(style=`background-image: url(${meta.bannerUrl})`)
|
|
div#title= meta.name || host
|
|
div#content
|
|
div#description!= meta.description
|