Initial commit
This commit is contained in:
commit
17db0285a0
15 changed files with 788 additions and 0 deletions
3
layouts/gems.shtml
Normal file
3
layouts/gems.shtml
Normal file
|
@ -0,0 +1,3 @@
|
|||
<extend template="base.shtml">
|
||||
|
||||
|
1
layouts/home.shtml
Normal file
1
layouts/home.shtml
Normal file
|
@ -0,0 +1 @@
|
|||
<extend template="base.shtml">
|
1
layouts/index.shtml
Normal file
1
layouts/index.shtml
Normal file
|
@ -0,0 +1 @@
|
|||
<extend template="base.shtml">
|
34
layouts/templates/base.shtml
Normal file
34
layouts/templates/base.shtml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" >
|
||||
<meta name="generator" content="pandoc" >
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" >
|
||||
<meta name="author" content="Igor Támara" >
|
||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/reset.css').link()">
|
||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/index.css').link()">
|
||||
<title :text="$site.title"></title>
|
||||
</head>
|
||||
<body>
|
||||
<nav id="menu" class="centered">
|
||||
<ctx about="$site.page('index')">
|
||||
<a href="$ctx.about.link()" text="$ctx.about.title">Home</a>
|
||||
</ctx>
|
||||
•
|
||||
<a href="https://github.com/neurocyte/flow">Download</a>
|
||||
•
|
||||
<a >Documentation</a>
|
||||
•
|
||||
<a href="https://discord.com/invite/4wvteUPphx">Discord</a>
|
||||
•
|
||||
<ctx about="$site.page('faq')">
|
||||
<a href="$ctx.about.link()" text="$ctx.about.title">FAQ</a>
|
||||
</ctx>
|
||||
•
|
||||
<a href="https://github.com/neurocyte/flow">Github</a>
|
||||
</nav>
|
||||
<h1 :text="$page.title"></h1>
|
||||
<div :html="$page.content()"></div>
|
||||
<script src="$site.asset('js/index.js').link()"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue