diff options
-rw-r--r-- | templates/src/onboarding.rs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/src/onboarding.rs b/templates/src/onboarding.rs index e2f07df..6ee90bf 100644 --- a/templates/src/onboarding.rs +++ b/templates/src/onboarding.rs @@ -34,6 +34,44 @@ markup::define! { b { "please enable JavaScript for this page to work properly." } small { "sorry T__T" } } + hr; + p { + "Alternatively, you can POST a following JSON document to this URL:" + } + pre[class="language-json"] { code { + r#"{ + // An h-card with your profile information, in MF2-JSON format. + "user": { + "type": [ "h-card" ], + "properties": { + "name": [ "Aiden" ], + "pronouns": [ "they/them" ], + "note": [ "A new blogger on the street." ], + "url": [ "https://example.com/" ] + } + }, + // Your first post as an h-entry, in MF2-JSON format. + "first_post": { + "type": [ "h-entry" ], + "properties": { + "content": [ "Hello world! (_This supports Markdown, by the way._)" ], + } + }, + // Self-explanatory. + "blog_name": "Aiden's Kitty Box!", + // Custom feeds to be created, if any. May be left empty. + "feeds": [ + { "name": "My adventures", "slug": "adventure-log" } + ] +}"# + } } + p { + "This can be done using any tool you want, such as " + code { "curl" } + " or " + code { "httpie" } + "." + } } ul #progressbar[style="display: none"] { li #intro { "Introduction" } |