forked from max-mapper/get-dat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
guide.html
48 lines (47 loc) · 2.36 KB
/
guide.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<title>{{> header }}</title>
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/styles/default.min.css">
</head>
<body>
<div class="wrapper">
{{#if index}}
<img width="100%" src="../static/img/datcat.jpeg" />
<section class="content">
<h1>Welcome!</h1>
<p>This is a tutorial that teaches you how to do some bioinformatics using <a href="http://bionode.io" target="_blank">bionode</a>. This project is still very much in the early stages of development, but we hope to get you excited about it and welcome all <a href="http://github.com/bionode/bionode">kind of contributions</a>! </p>
<h4>Table of Contents</h4>
<div class="jumbotron-horizontal-rule"></div>
<ul class="toc-list">
{{#index}}
<li><a href="{{ href }}">{{ name }}</a></li>
{{/index}}
</ul>
<p>If you look to your right, you'll see there is a terminal that is connected to a <strong>docker container</strong> -- that is a computer, in the cloud but accessible right here in your browser!</p>
<p>Below the terminal, there's a file browser and an editor. These are connected to the same machine. Every time you type in the editor things will be <strong>automatically saved</strong>, and if you come back to the <strong>same URL</strong>, your stuff will be here waiting!</p>
<p>Ok, ready to dive in? <a class="nextp button" href="{{index.0.href}}">Let's go! »</a>
</p>
</section>
{{/if}}
{{#if content}}
<section class="content">
<p><a href="index.html">table of contents</a></p>
{{{ content }}}
<div class="navlinks">
{{#if next}}
<a class="nextp button" href="{{ next }}.html">OK, next! »</a>
{{#if previous}}
<a class="lastp navlink" href="{{ previous }}.html">« back</a>
{{/if}}
{{/if}}
</div>
{{/if}}
</section>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script>
</body>
</html>