2017-12-14 09:23:45 -06:00
|
|
|
doctype html
|
|
|
|
|
2017-12-14 15:41:57 -06:00
|
|
|
html(lang= lang)
|
2017-12-14 09:23:45 -06:00
|
|
|
head
|
|
|
|
meta(charset="UTF-8")
|
2017-12-15 13:10:05 -06:00
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no")
|
2017-12-14 09:23:45 -06:00
|
|
|
title
|
2017-12-15 09:19:10 -06:00
|
|
|
| #{title} | Misskey Docs
|
2018-04-12 22:05:24 -05:00
|
|
|
link(rel="stylesheet" href="/docs/assets/style.css")
|
2018-07-16 11:11:36 -05: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 13:02:58 -05: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 09:23:45 -06:00
|
|
|
block meta
|
|
|
|
|
|
|
|
body
|
2017-12-14 15:41:57 -06:00
|
|
|
nav
|
|
|
|
ul
|
2018-07-06 06:27:48 -05:00
|
|
|
each doc in docs
|
2018-08-28 16:59:43 -05:00
|
|
|
li: a(href=`/docs/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja-JP']
|
2017-12-14 09:23:45 -06:00
|
|
|
main
|
2017-12-16 13:02:30 -06:00
|
|
|
article
|
|
|
|
block main
|
|
|
|
if content
|
|
|
|
| !{content}
|
|
|
|
|
2018-07-30 02:24:46 -05: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 13:02:30 -06:00
|
|
|
footer
|
2018-07-16 13:57:34 -05:00
|
|
|
block footer
|
2018-07-06 06:27:48 -05:00
|
|
|
small= copyright
|