mirror of
https://github.com/fazo96/markcloud.git
synced 2025-03-27 22:48:37 +01:00
21 lines
380 B
HTML
21 lines
380 B
HTML
<template name="layout">
|
|
<div class="container">
|
|
<h1>MarkCloud</h1>
|
|
<hr>
|
|
{{> yield}}
|
|
</div>
|
|
</template>
|
|
|
|
<template name="home">
|
|
test
|
|
</template>
|
|
|
|
<template name="new">
|
|
<textarea id="editor" class="form-control"></textarea>
|
|
<button id="new-btn" class="btn btn-primary">submit</button>
|
|
</template>
|
|
|
|
<template name="doc">
|
|
{{#markdown}} {{text}} {{/markdown}}
|
|
</template>
|