Skip to content

Commit 9ebcbd1

Browse files
committed
initial commit for LKL web (lkl.github.io)
Signed-off-by: Hajime Tazaki <[email protected]>
0 parents  commit 9ebcbd1

File tree

15 files changed

+897
-0
lines changed

15 files changed

+897
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.swp

images/bg_hr.png

78 Bytes
Loading

images/blacktocat.png

463 Bytes
Loading

images/icon_download.png

216 Bytes
Loading

images/sprite_download.png

14.5 KB
Loading

index.html

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset='utf-8'>
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
7+
<!-- Google Fonts -->
8+
<link href='http://fonts.googleapis.com/css?family=Nunito:400,700'
9+
rel='stylesheet' type='text/css'>
10+
<link href='http://fonts.googleapis.com/css?family=Ubuntu'
11+
rel='stylesheet' type='text/css'>
12+
13+
<link rel="stylesheet" type="text/css"
14+
href="stylesheets/stylesheet.css" media="screen">
15+
<link rel="stylesheet" type="text/css"
16+
href="stylesheets/octicons.css">
17+
<link rel="stylesheet" type="text/css"
18+
href="stylesheets/pygment_trac.css" media="screen">
19+
<meta name="viewport"
20+
content="width=device-width, initial-scale=1, user-scalable=no">
21+
22+
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
23+
24+
<!--[if lt IE 9]>
25+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
26+
<![endif]-->
27+
28+
<title> Linux Kernel Library (LKL) </title>
29+
30+
</head>
31+
<body>
32+
33+
<!-- Fork me Ribbon -->
34+
<a href="https://github.com/libos-nuse/net-next-nuse"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
35+
36+
37+
<header>
38+
<div class="container">
39+
<h1> LKL: Linux Kernel Library</h1>
40+
</div>
41+
</header>
42+
43+
<div class="container">
44+
<section id="main_content">
45+
46+
<!--
47+
<article>
48+
<h2> News </h2>
49+
<ul>
50+
<li> <a href=https://github.com/thehajime/blog/issues/1> dead or alive: Linux LibOS project in 2016 </a> (a blog post, January 2016) </li>
51+
<li> <a href=http://lwn.net/Articles/639333/> Running the kernel in library mode </a> (Linux Weekly News, April 2015)</li>
52+
<li> <a href=http://www.phoronix.com/scan.php?page=news_item&px=Linux-Library-LibOS> Introducing The Library Operating System For Linux </a> (Phoronix, March 2015)
53+
</ul>
54+
</article>
55+
-->
56+
57+
<article>
58+
<h3> Community </h3>
59+
<ul>
60+
<li><i class="fa fa-envelope fa-1x"> </i>
61+
<a href="https://www.freelists.org/list/linux-kernel-library"> Mailing lists </a> </li>
62+
<li><i class="fa fa-slack fa-1x"> </i> <a href="https://lkl-dev.slack.com/">Slcak team</a> (join from <a href="https://lkl-slack-invitation.herokuapp.com/">here</a>) </li>
63+
<li><i class="fa fa-github-alt fa-1x"> </i> <a href="https://github.com/lkl/linux"> Github </a> </li>
64+
</ul>
65+
</article>
66+
67+
</section>
68+
</div>
69+
<script src="javascripts/scale.fix.js"></script>
70+
<script type="text/javascript">
71+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
72+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
73+
</script>
74+
<script type="text/javascript">
75+
try {
76+
var pageTracker = _gat._getTracker("UA-57375491-1");
77+
pageTracker._trackPageview();
78+
} catch(err) {}
79+
</script>
80+
</body>
81+
</html>
82+

javascripts/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('This would be the main JS file.');

javascripts/scale.fix.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
var metas = document.getElementsByTagName('meta');
2+
var i;
3+
if (navigator.userAgent.match(/iPhone/i)) {
4+
for (i=0; i<metas.length; i++) {
5+
if (metas[i].name == "viewport") {
6+
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
7+
}
8+
}
9+
document.addEventListener("gesturestart", gestureStart, false);
10+
}
11+
function gestureStart() {
12+
for (i=0; i<metas.length; i++) {
13+
if (metas[i].name == "viewport") {
14+
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
15+
}
16+
}
17+
}

stylesheets/octicons.css

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
@font-face {
2+
font-family: 'octicons';
3+
src: url('octicons.eot?#iefix') format('embedded-opentype'),
4+
url('octicons.woff') format('woff'),
5+
url('octicons.ttf') format('truetype'),
6+
url('octicons.svg#octicons') format('svg');
7+
font-weight: normal;
8+
font-style: normal;
9+
}
10+
11+
/*
12+
13+
.octicon is optimized for 16px.
14+
.mega-octicon is optimized for 32px but can be used larger.
15+
16+
*/
17+
.octicon {
18+
font: normal normal 16px octicons;
19+
line-height: 1;
20+
display: inline-block;
21+
text-decoration: none;
22+
-webkit-font-smoothing: antialiased;
23+
-moz-osx-font-smoothing: grayscale;
24+
-webkit-user-select: none;
25+
-moz-user-select: none;
26+
-ms-user-select: none;
27+
user-select: none;
28+
}
29+
.mega-octicon {
30+
font: normal normal 32px octicons;
31+
line-height: 1;
32+
display: inline-block;
33+
text-decoration: none;
34+
-webkit-font-smoothing: antialiased;
35+
-moz-osx-font-smoothing: grayscale;
36+
-webkit-user-select: none;
37+
-moz-user-select: none;
38+
-ms-user-select: none;
39+
user-select: none;
40+
}
41+
42+
.octicon-alert:before { content: '\f02d'} /*  */
43+
.octicon-alignment-align:before { content: '\f08a'} /*  */
44+
.octicon-alignment-aligned-to:before { content: '\f08e'} /*  */
45+
.octicon-alignment-unalign:before { content: '\f08b'} /*  */
46+
.octicon-arrow-down:before { content: '\f03f'} /*  */
47+
.octicon-arrow-left:before { content: '\f040'} /*  */
48+
.octicon-arrow-right:before { content: '\f03e'} /*  */
49+
.octicon-arrow-small-down:before { content: '\f0a0'} /*  */
50+
.octicon-arrow-small-left:before { content: '\f0a1'} /*  */
51+
.octicon-arrow-small-right:before { content: '\f071'} /*  */
52+
.octicon-arrow-small-up:before { content: '\f09f'} /*  */
53+
.octicon-arrow-up:before { content: '\f03d'} /*  */
54+
.octicon-beer:before { content: '\f069'} /*  */
55+
.octicon-book:before { content: '\f007'} /*  */
56+
.octicon-bookmark:before { content: '\f07b'} /*  */
57+
.octicon-briefcase:before { content: '\f0d3'} /*  */
58+
.octicon-broadcast:before { content: '\f048'} /*  */
59+
.octicon-browser:before { content: '\f0c5'} /*  */
60+
.octicon-bug:before { content: '\f091'} /*  */
61+
.octicon-calendar:before { content: '\f068'} /*  */
62+
.octicon-check:before { content: '\f03a'} /*  */
63+
.octicon-checklist:before { content: '\f076'} /*  */
64+
.octicon-chevron-down:before { content: '\f0a3'} /*  */
65+
.octicon-chevron-left:before { content: '\f0a4'} /*  */
66+
.octicon-chevron-right:before { content: '\f078'} /*  */
67+
.octicon-chevron-up:before { content: '\f0a2'} /*  */
68+
.octicon-circle-slash:before { content: '\f084'} /*  */
69+
.octicon-circuit-board:before { content: '\f0d6'} /*  */
70+
.octicon-clippy:before { content: '\f035'} /*  */
71+
.octicon-clock:before { content: '\f046'} /*  */
72+
.octicon-cloud-download:before { content: '\f00b'} /*  */
73+
.octicon-cloud-upload:before { content: '\f00c'} /*  */
74+
.octicon-code:before { content: '\f05f'} /*  */
75+
.octicon-color-mode:before { content: '\f065'} /*  */
76+
.octicon-comment-add:before,
77+
.octicon-comment:before { content: '\f02b'} /*  */
78+
.octicon-comment-discussion:before { content: '\f04f'} /*  */
79+
.octicon-credit-card:before { content: '\f045'} /*  */
80+
.octicon-dash:before { content: '\f0ca'} /*  */
81+
.octicon-dashboard:before { content: '\f07d'} /*  */
82+
.octicon-database:before { content: '\f096'} /*  */
83+
.octicon-device-camera:before { content: '\f056'} /*  */
84+
.octicon-device-camera-video:before { content: '\f057'} /*  */
85+
.octicon-device-desktop:before { content: '\f27c'} /*  */
86+
.octicon-device-mobile:before { content: '\f038'} /*  */
87+
.octicon-diff:before { content: '\f04d'} /*  */
88+
.octicon-diff-added:before { content: '\f06b'} /*  */
89+
.octicon-diff-ignored:before { content: '\f099'} /*  */
90+
.octicon-diff-modified:before { content: '\f06d'} /*  */
91+
.octicon-diff-removed:before { content: '\f06c'} /*  */
92+
.octicon-diff-renamed:before { content: '\f06e'} /*  */
93+
.octicon-ellipsis:before { content: '\f09a'} /*  */
94+
.octicon-eye-unwatch:before,
95+
.octicon-eye-watch:before,
96+
.octicon-eye:before { content: '\f04e'} /*  */
97+
.octicon-file-binary:before { content: '\f094'} /*  */
98+
.octicon-file-code:before { content: '\f010'} /*  */
99+
.octicon-file-directory:before { content: '\f016'} /*  */
100+
.octicon-file-media:before { content: '\f012'} /*  */
101+
.octicon-file-pdf:before { content: '\f014'} /*  */
102+
.octicon-file-submodule:before { content: '\f017'} /*  */
103+
.octicon-file-symlink-directory:before { content: '\f0b1'} /*  */
104+
.octicon-file-symlink-file:before { content: '\f0b0'} /*  */
105+
.octicon-file-text:before { content: '\f011'} /*  */
106+
.octicon-file-zip:before { content: '\f013'} /*  */
107+
.octicon-flame:before { content: '\f0d2'} /*  */
108+
.octicon-fold:before { content: '\f0cc'} /*  */
109+
.octicon-gear:before { content: '\f02f'} /*  */
110+
.octicon-gift:before { content: '\f042'} /*  */
111+
.octicon-gist:before { content: '\f00e'} /*  */
112+
.octicon-gist-secret:before { content: '\f08c'} /*  */
113+
.octicon-git-branch-create:before,
114+
.octicon-git-branch-delete:before,
115+
.octicon-git-branch:before { content: '\f020'} /*  */
116+
.octicon-git-commit:before { content: '\f01f'} /*  */
117+
.octicon-git-compare:before { content: '\f0ac'} /*  */
118+
.octicon-git-merge:before { content: '\f023'} /*  */
119+
.octicon-git-pull-request-abandoned:before,
120+
.octicon-git-pull-request:before { content: '\f009'} /*  */
121+
.octicon-globe:before { content: '\f0b6'} /*  */
122+
.octicon-graph:before { content: '\f043'} /*  */
123+
.octicon-heart:before { content: '\2665'} /* ♥ */
124+
.octicon-history:before { content: '\f07e'} /*  */
125+
.octicon-home:before { content: '\f08d'} /*  */
126+
.octicon-horizontal-rule:before { content: '\f070'} /*  */
127+
.octicon-hourglass:before { content: '\f09e'} /*  */
128+
.octicon-hubot:before { content: '\f09d'} /*  */
129+
.octicon-inbox:before { content: '\f0cf'} /*  */
130+
.octicon-info:before { content: '\f059'} /*  */
131+
.octicon-issue-closed:before { content: '\f028'} /*  */
132+
.octicon-issue-opened:before { content: '\f026'} /*  */
133+
.octicon-issue-reopened:before { content: '\f027'} /*  */
134+
.octicon-jersey:before { content: '\f019'} /*  */
135+
.octicon-jump-down:before { content: '\f072'} /*  */
136+
.octicon-jump-left:before { content: '\f0a5'} /*  */
137+
.octicon-jump-right:before { content: '\f0a6'} /*  */
138+
.octicon-jump-up:before { content: '\f073'} /*  */
139+
.octicon-key:before { content: '\f049'} /*  */
140+
.octicon-keyboard:before { content: '\f00d'} /*  */
141+
.octicon-law:before { content: '\f0d8'} /* */
142+
.octicon-light-bulb:before { content: '\f000'} /*  */
143+
.octicon-link:before { content: '\f05c'} /*  */
144+
.octicon-link-external:before { content: '\f07f'} /*  */
145+
.octicon-list-ordered:before { content: '\f062'} /*  */
146+
.octicon-list-unordered:before { content: '\f061'} /*  */
147+
.octicon-location:before { content: '\f060'} /*  */
148+
.octicon-gist-private:before,
149+
.octicon-mirror-private:before,
150+
.octicon-git-fork-private:before,
151+
.octicon-lock:before { content: '\f06a'} /*  */
152+
.octicon-logo-github:before { content: '\f092'} /*  */
153+
.octicon-mail:before { content: '\f03b'} /*  */
154+
.octicon-mail-read:before { content: '\f03c'} /*  */
155+
.octicon-mail-reply:before { content: '\f051'} /*  */
156+
.octicon-mark-github:before { content: '\f00a'} /*  */
157+
.octicon-markdown:before { content: '\f0c9'} /*  */
158+
.octicon-megaphone:before { content: '\f077'} /*  */
159+
.octicon-mention:before { content: '\f0be'} /*  */
160+
.octicon-microscope:before { content: '\f089'} /*  */
161+
.octicon-milestone:before { content: '\f075'} /*  */
162+
.octicon-mirror-public:before,
163+
.octicon-mirror:before { content: '\f024'} /*  */
164+
.octicon-mortar-board:before { content: '\f0d7'} /* */
165+
.octicon-move-down:before { content: '\f0a8'} /*  */
166+
.octicon-move-left:before { content: '\f074'} /*  */
167+
.octicon-move-right:before { content: '\f0a9'} /*  */
168+
.octicon-move-up:before { content: '\f0a7'} /*  */
169+
.octicon-mute:before { content: '\f080'} /*  */
170+
.octicon-no-newline:before { content: '\f09c'} /*  */
171+
.octicon-octoface:before { content: '\f008'} /*  */
172+
.octicon-organization:before { content: '\f037'} /*  */
173+
.octicon-package:before { content: '\f0c4'} /*  */
174+
.octicon-paintcan:before { content: '\f0d1'} /*  */
175+
.octicon-pencil:before { content: '\f058'} /*  */
176+
.octicon-person-add:before,
177+
.octicon-person-follow:before,
178+
.octicon-person:before { content: '\f018'} /*  */
179+
.octicon-pin:before { content: '\f041'} /*  */
180+
.octicon-playback-fast-forward:before { content: '\f0bd'} /*  */
181+
.octicon-playback-pause:before { content: '\f0bb'} /*  */
182+
.octicon-playback-play:before { content: '\f0bf'} /*  */
183+
.octicon-playback-rewind:before { content: '\f0bc'} /*  */
184+
.octicon-plug:before { content: '\f0d4'} /*  */
185+
.octicon-repo-create:before,
186+
.octicon-gist-new:before,
187+
.octicon-file-directory-create:before,
188+
.octicon-file-add:before,
189+
.octicon-plus:before { content: '\f05d'} /*  */
190+
.octicon-podium:before { content: '\f0af'} /*  */
191+
.octicon-primitive-dot:before { content: '\f052'} /*  */
192+
.octicon-primitive-square:before { content: '\f053'} /*  */
193+
.octicon-pulse:before { content: '\f085'} /*  */
194+
.octicon-puzzle:before { content: '\f0c0'} /*  */
195+
.octicon-question:before { content: '\f02c'} /*  */
196+
.octicon-quote:before { content: '\f063'} /*  */
197+
.octicon-radio-tower:before { content: '\f030'} /*  */
198+
.octicon-repo-delete:before,
199+
.octicon-repo:before { content: '\f001'} /*  */
200+
.octicon-repo-clone:before { content: '\f04c'} /*  */
201+
.octicon-repo-force-push:before { content: '\f04a'} /*  */
202+
.octicon-gist-fork:before,
203+
.octicon-repo-forked:before { content: '\f002'} /*  */
204+
.octicon-repo-pull:before { content: '\f006'} /*  */
205+
.octicon-repo-push:before { content: '\f005'} /*  */
206+
.octicon-rocket:before { content: '\f033'} /*  */
207+
.octicon-rss:before { content: '\f034'} /*  */
208+
.octicon-ruby:before { content: '\f047'} /*  */
209+
.octicon-screen-full:before { content: '\f066'} /*  */
210+
.octicon-screen-normal:before { content: '\f067'} /*  */
211+
.octicon-search-save:before,
212+
.octicon-search:before { content: '\f02e'} /*  */
213+
.octicon-server:before { content: '\f097'} /*  */
214+
.octicon-settings:before { content: '\f07c'} /*  */
215+
.octicon-log-in:before,
216+
.octicon-sign-in:before { content: '\f036'} /*  */
217+
.octicon-log-out:before,
218+
.octicon-sign-out:before { content: '\f032'} /*  */
219+
.octicon-split:before { content: '\f0c6'} /*  */
220+
.octicon-squirrel:before { content: '\f0b2'} /*  */
221+
.octicon-star-add:before,
222+
.octicon-star-delete:before,
223+
.octicon-star:before { content: '\f02a'} /*  */
224+
.octicon-steps:before { content: '\f0c7'} /*  */
225+
.octicon-stop:before { content: '\f08f'} /*  */
226+
.octicon-repo-sync:before,
227+
.octicon-sync:before { content: '\f087'} /*  */
228+
.octicon-tag-remove:before,
229+
.octicon-tag-add:before,
230+
.octicon-tag:before { content: '\f015'} /*  */
231+
.octicon-telescope:before { content: '\f088'} /*  */
232+
.octicon-terminal:before { content: '\f0c8'} /*  */
233+
.octicon-three-bars:before { content: '\f05e'} /*  */
234+
.octicon-tools:before { content: '\f031'} /*  */
235+
.octicon-trashcan:before { content: '\f0d0'} /*  */
236+
.octicon-triangle-down:before { content: '\f05b'} /*  */
237+
.octicon-triangle-left:before { content: '\f044'} /*  */
238+
.octicon-triangle-right:before { content: '\f05a'} /*  */
239+
.octicon-triangle-up:before { content: '\f0aa'} /*  */
240+
.octicon-unfold:before { content: '\f039'} /*  */
241+
.octicon-unmute:before { content: '\f0ba'} /*  */
242+
.octicon-versions:before { content: '\f064'} /*  */
243+
.octicon-remove-close:before,
244+
.octicon-x:before { content: '\f081'} /*  */
245+
.octicon-zap:before { content: '\26A1'} /* ⚡ */

stylesheets/octicons.eot

30.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)