Skip to content

Commit 3b4fb9e

Browse files
committed
init
0 parents  commit 3b4fb9e

File tree

5 files changed

+97
-0
lines changed

5 files changed

+97
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: Jochem Schutte
2+
markdown: redcarpet
3+
pygments: true

_layouts/default.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>{{ page.title }}</title>
7+
<meta name="viewport" content="width=device-width">
8+
9+
<meta name="keywords" content="Jochem, Schutte, 'jochem schutte', flickr, blog, photos, work, websites" />
10+
<meta name="description" content="My name is Jochem Schutte and this is my website." />
11+
<meta name="author" content="Jochem Schutte" />
12+
13+
<!-- Custom CSS -->
14+
<link rel="stylesheet" href="/css/main.css">
15+
16+
</head>
17+
<body>
18+
19+
<div class="container">
20+
<div class="site">
21+
<div class="header">
22+
<h1 class="title">{{ site.name }}</h1>
23+
</div>
24+
25+
{{ content }}
26+
</div> <!-- /container -->
27+
28+
</body>
29+
</html>

css/main.css

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
2+
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
3+
4+
/* main styles */
5+
body, html {
6+
background: #7AADD2;
7+
color: #FFF;
8+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
9+
}
10+
11+
.container {
12+
padding: 10%;
13+
}
14+
15+
h1 {
16+
font-weight: 300;
17+
font-size: 38px;
18+
}
19+
20+
a {
21+
color: #FFF;
22+
text-decoration: none;
23+
-webkit-transition: background 0.2s linear;
24+
padding: 2px 4px;
25+
}
26+
27+
a:hover, a:focus {
28+
background: #484E52;
29+
color: #FFF;
30+
border-radius: 2px;
31+
}
32+
33+
.inline-list {
34+
padding: 0;
35+
}
36+
37+
.inline-list a {
38+
color: #e1e1e1;
39+
}
40+
41+
.inline-list li {
42+
margin: 0;
43+
float: left;
44+
margin-right: 20px;
45+
margin-left: 8px;
46+
color: #e1e1e1;
47+
}
48+
49+
.inline-list li:first-child {
50+
list-style: none;
51+
margin-left: 0;
52+
}

index.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
title: Home
4+
---
5+
6+
<div id="home">
7+
<ul class="inline-list">
8+
<li><a href="http://github.com/jchm" title='Visit my Github'>Github</a>
9+
<li><a href="http://twitter.com/jchm" title='Visit my twitter'>Twitter</a>
10+
<li><a href="http://flickr.com/jochemschutte" title='I post my photos on flickr'>Flickr</a>
11+
</ul>
12+
</div>

0 commit comments

Comments
 (0)