setting up jekyll

This commit is contained in:
Axel Kittenberger 2016-06-01 09:32:30 +02:00
parent 2e59030c9d
commit baa76c6eda
4 changed files with 36 additions and 7 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
_site/

2
_config.yml Normal file
View File

@ -0,0 +1,2 @@
name: Lsyncd
markdown: kramdown

26
_layouts/default.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
<div class="container">
{{ content }}
</div><!-- /.container -->
<footer>
<ul>
<li><a href="https://github.com/lsyncd">github.com/lsyncd</a></li>
</ul>
</footer>
</body>
</html>

View File

@ -1,7 +1,7 @@
<html>
<head>
</head>
<body>
Test!
</body>
</html>
---
layout: default
title: Lsyncd
---
<div class="blurb">
<p>jekyll test</p>
</div>