iceshrimp-legacy/src/server/web/views/base.pug

48 lines
1.1 KiB
Plaintext
Raw Normal View History

block vars
2016-12-28 23:49:51 +01:00
doctype html
2017-03-22 08:19:32 +01:00
!= '\n<!-- Thank you for using Misskey! @syuilo -->\n'
2016-12-28 23:49:51 +01:00
2017-03-26 15:03:56 +02:00
html
2016-12-28 23:49:51 +01:00
head
meta(charset='utf-8')
2019-04-15 14:17:52 +02:00
meta(name='application-name' content='Misskey')
2017-03-17 16:02:41 +01:00
meta(name='referrer' content='origin')
2019-03-14 18:17:10 +01:00
meta(name='theme-color' content='#105779')
2019-04-29 11:15:12 +02:00
meta(property='og:site_name' content= instanceName || 'Misskey')
2019-03-14 08:30:51 +01:00
link(rel='icon' href= icon || '/favicon.ico')
2017-11-18 14:39:09 +01:00
link(rel='manifest' href='/manifest.json')
2017-05-17 22:06:55 +02:00
title
block title
2019-03-14 08:30:51 +01:00
= title || 'Misskey'
block desc
2019-03-14 08:30:51 +01:00
meta(name='description' content= desc || '✨🌎✨ A federated blogging platform ✨🚀✨')
block meta
2017-05-17 22:06:55 +02:00
block og
meta(property='og:image' content=img)
2016-12-28 23:49:51 +01:00
style
include ./../../../../built/client/assets/init.css
2017-05-17 22:06:55 +02:00
script
include ./../../../../built/client/assets/boot.js
2017-05-17 22:06:55 +02:00
2017-05-24 23:33:59 +02:00
script
include ./../../../../built/client/assets/safe.js
2016-12-28 23:49:51 +01:00
body
2017-03-25 22:58:29 +01:00
noscript: p
| JavaScriptを有効にしてください
br
2017-12-07 15:48:46 +01:00
| Please turn on your JavaScript
2018-06-09 03:06:27 +02:00
div#ini.
<svg viewBox="0 0 50 50">
<path fill=#fb4e4e d="M25.251,6.461c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615V6.461z" />
2018-06-09 03:06:27 +02:00
</svg>
block content