Skip to content

Commit 52600c0

Browse files
committed
re-init
0 parents  commit 52600c0

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-minimal

_layouts/default.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
<title>{{ site.title | default: site.github.repository_name }}</title>
7+
8+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9+
<meta name="viewport" content="width=device-width">
10+
<!--[if lt IE 9]>
11+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
12+
<![endif]-->
13+
</head>
14+
<body>
15+
<div class="wrapper">
16+
<section>
17+
18+
{{ content }}
19+
20+
</section>
21+
</div>
22+
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
23+
24+
25+
</body>
26+
</html>

assets/css/style.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+
/*
6+
* Can one believe github's doc, I wonder? According to this:
7+
* https://help.github.com/articles/customizing-css-and-html-in-your-jekyll-theme/
8+
* I would expect the following to show up in the generated CSS, but it's not.
9+
*/
10+
header, footer { display: none; }
11+
/* A user dictactes the width of their browser window, so go and flow with it.
12+
* Webdesign needs ratios, not pixels.
13+
*/
14+
.wrapper { width: 100%; }
15+
section { width: 95%; float: none; }

index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* [clojure lanterna](https://martin-s-weber.github.io/clojure-lanterna)

0 commit comments

Comments
 (0)