---
title: 'XMark Documentation Theme Kitchen Sink'
description: 'See what can XMark documentation theme can do'
keywords: ''
robots: 'index,follow'
category: ''
layout: 'documentation'
tags:
  - 'home'
---

# Welcome to XMark docsite documentation

Xmark doc theme is used to build documentation sites

## Getting started

Checkout the [Quick Start Guide](./intro/quickstart) to get a sense of how to use Forge.

If you want to learn more about the concepts, checkout the [Concept Explanations](./intro/concepts).

## Code Template

This is a code block that contains some variables are fetched from remote API and populated into the code source.

```javascript
import { DidSessionProvider } from '@arcblock/did-connect';

// Check URI for this variable
const appId = '{{appId}}';
const appDid = '{{appDid}}';
const serviceHost = '{{serviceHost}}';

export default function App() {
  return (
    <DidSessionProvider appDid={appDid} serviceHost={serviceHost}>
      <p>Content for app goes here</p>
    </DidSessionProvider>
  );
}
```
