2019-01-12 03:27:23 +01:00
|
|
|
doctype html
|
|
|
|
|
|
|
|
html
|
|
|
|
|
|
|
|
head
|
|
|
|
meta(charset='utf-8')
|
|
|
|
meta(name='application-name' content='Misskey')
|
|
|
|
title Misskey
|
|
|
|
style.
|
|
|
|
html {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
max-width: 934px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
padding: 5px;
|
|
|
|
background: rgb(153, 153, 204);
|
|
|
|
border: 1px solid #000;
|
2019-01-17 01:19:47 +01:00
|
|
|
box-shadow: rgb(204, 204, 204) 1px 2px 3px;
|
2019-01-12 03:27:23 +01:00
|
|
|
}
|
|
|
|
header:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
header > h1 {
|
|
|
|
float: left;
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
header > img {
|
|
|
|
float: right;
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
margin: 1em 0;
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
2019-01-17 01:19:47 +01:00
|
|
|
box-shadow: rgb(204, 204, 204) 1px 2px 3px;
|
2019-01-12 03:27:23 +01:00
|
|
|
}
|
|
|
|
table tr th {
|
|
|
|
background-color: #ccf;
|
|
|
|
border: 1px solid #000;
|
|
|
|
width: 300px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 4px 5px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
table tr td {
|
|
|
|
background-color: #ddd;
|
|
|
|
border: 1px solid #000;
|
|
|
|
padding: 4px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body
|
|
|
|
main
|
|
|
|
header
|
|
|
|
h1 Misskey Version #{version}
|
|
|
|
img(src='/assets/misskey-php-like-logo.png' alt='')
|
|
|
|
table
|
|
|
|
tr
|
|
|
|
th Instance
|
|
|
|
td= meta.name
|
2019-01-12 11:30:56 +01:00
|
|
|
tr
|
|
|
|
th Description
|
|
|
|
td= meta.description
|
2019-01-12 03:27:23 +01:00
|
|
|
tr
|
|
|
|
th Maintainer
|
|
|
|
td
|
|
|
|
= meta.maintainer.name
|
|
|
|
| <#{meta.maintainer.email}>
|
|
|
|
tr
|
|
|
|
th System
|
|
|
|
td= os
|
|
|
|
tr
|
|
|
|
th Node version
|
|
|
|
td= node
|
|
|
|
tr
|
|
|
|
th Machine
|
|
|
|
td= machine
|
|
|
|
tr
|
|
|
|
th CPU
|
|
|
|
td= cpu.model
|
2019-01-15 19:36:25 +01:00
|
|
|
tr
|
|
|
|
th Original users
|
|
|
|
td= meta.stats.originalUsersCount
|
|
|
|
tr
|
|
|
|
th Original notes
|
|
|
|
td= meta.stats.originalNotesCount
|
2019-01-12 03:27:23 +01:00
|
|
|
tr
|
|
|
|
th Registration
|
|
|
|
td= !meta.disableRegistration ? 'yes' : 'no'
|
|
|
|
tr
|
|
|
|
th reCAPTCHA enabled
|
2019-01-16 06:57:01 +01:00
|
|
|
td= meta.enableRecaptcha ? 'enabled' : 'disabled'
|
|
|
|
tr
|
|
|
|
th LTL(STL) enabled
|
|
|
|
td= !meta.disableLocalTimeline ? 'enabled' : 'disabled'
|
|
|
|
tr
|
|
|
|
th GTL enabled
|
|
|
|
td= !meta.disableGlobalTimeline ? 'enabled' : 'disabled'
|
2019-01-12 03:27:23 +01:00
|
|
|
tr
|
|
|
|
th Cache remote files
|
|
|
|
td= meta.cacheRemoteFiles ? 'yes' : 'no'
|
|
|
|
tr
|
|
|
|
th Drive capacity per local user
|
|
|
|
td
|
|
|
|
= meta.localDriveCapacityMb
|
|
|
|
| MB
|
|
|
|
tr
|
|
|
|
th Drive capacity per remote user
|
|
|
|
td
|
|
|
|
= meta.remoteDriveCapacityMb
|
|
|
|
| MB
|
|
|
|
tr
|
|
|
|
th Max text length
|
|
|
|
td= meta.maxNoteTextLength
|
|
|
|
tr
|
|
|
|
th Emojis
|
|
|
|
td
|
|
|
|
each emoji in emojis
|
|
|
|
| :#{emoji.name}:
|
|
|
|
= ' '
|
|
|
|
|