-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathhead.html
More file actions
68 lines (68 loc) · 1.67 KB
/
head.html
File metadata and controls
68 lines (68 loc) · 1.67 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="google-code-prettify/prettify.css" rel="stylesheet">
<link href="assets/listing.css" rel="stylesheet">
<script src="google-code-prettify/prettify.js"></script>
<script src="google-code-prettify/lang-asm.js"></script>
<script type="text/javascript">
window.onload = prettyPrint;
</script>
<title> Green threads explained (FILENAME)</title>
<style>
blockquote p {
/* The default bootstrap setting
* is not very good looking with
* what Markdown.pl generates.
*/
font-size: inherit;
font-style: italic;
}
.nav-pane {
width: inherit;
background-color: white;
}
@media (min-width: 768px) {
.nav-pane {
position: fixed;
}
}
@media (min-width: 768px) and (max-width: 979px) {
/* This fixes an issue with the title when
* displayed on tablets and small desktops.
*/
h1 small {
font-size: 22px;
}
}
</style>
</head>
<body>
<div class="container" style="padding-bottom: 40px">
<div class="row">
<div class="span2"><!-- navigation bar -->
<div class="nav-pane">
<h1><small><span style="color: green">Green Threads Explained</span></small></h1>
<hr/>
<p>
A short and self contained explanation that
will guide you through an implementation
of user threads.
</p>
<ul class="nav nav-list">
NAVLIST
</ul>
<hr/>
<p>
<a class="btn" href="https://github.com/mpu/gthreads">Fork me on Github</a>
</p>
<p>
© qcar
</p>
</div>
</div>
<div class="span10">