2017-12-14 16:23:45 +01:00
|
|
|
doctype html
|
|
|
|
|
2017-12-14 22:41:57 +01:00
|
|
|
html(lang= lang)
|
2017-12-14 16:23:45 +01:00
|
|
|
head
|
|
|
|
meta(charset="UTF-8")
|
2017-12-15 20:10:05 +01:00
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no")
|
2017-12-14 16:23:45 +01:00
|
|
|
title
|
2017-12-15 16:19:10 +01:00
|
|
|
| #{title} | Misskey Docs
|
2018-04-13 05:05:24 +02:00
|
|
|
link(rel="stylesheet" href="/docs/assets/style.css")
|
2018-07-16 18:11:36 +02:00
|
|
|
link(rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css")
|
|
|
|
script(src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js")
|
2018-09-16 20:02:58 +02:00
|
|
|
link(rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous")
|
2017-12-14 16:23:45 +01:00
|
|
|
block meta
|
|
|
|
|
|
|
|
body
|
2017-12-14 22:41:57 +01:00
|
|
|
nav
|
|
|
|
ul
|
2018-07-06 13:27:48 +02:00
|
|
|
each doc in docs
|
2018-08-28 23:59:43 +02:00
|
|
|
li: a(href=`/docs/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja-JP']
|
2017-12-14 16:23:45 +01:00
|
|
|
main
|
2017-12-16 20:02:30 +01:00
|
|
|
article
|
|
|
|
block main
|
|
|
|
if content
|
|
|
|
| !{content}
|
|
|
|
|
2018-07-30 09:24:46 +02:00
|
|
|
aside.
|
|
|
|
<div id="disqus_thread"></div>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
|
|
|
|
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
|
|
|
|
/*
|
|
|
|
var disqus_config = function () {
|
|
|
|
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
|
|
|
|
this.page.identifier = "#{ id }"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
(function() { // DON'T EDIT BELOW THIS LINE
|
|
|
|
var d = document, s = d.createElement('script');
|
|
|
|
s.src = 'https://misskey.disqus.com/embed.js';
|
|
|
|
s.setAttribute('data-timestamp', +new Date());
|
|
|
|
(d.head || d.body).appendChild(s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
|
|
|
2017-12-16 20:02:30 +01:00
|
|
|
footer
|
2018-07-16 20:57:34 +02:00
|
|
|
block footer
|
2018-07-06 13:27:48 +02:00
|
|
|
small= copyright
|