1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00

First try

This commit is contained in:
Markus Birth 2014-05-09 01:12:33 +02:00
parent a8d695ffaa
commit dcdc070fcb
4 changed files with 75 additions and 0 deletions

3
Gemfile Normal file
View File

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'github-pages'

21
_config.yml Normal file
View File

@ -0,0 +1,21 @@
name: "mbirth wiki"
description: "All you hacking stuff"
url: "http://wiki.mbirth.de"
#paginate: 10
markdown: redcarpet
markdown_ext: markdown,mkdown,mkdn,mkd,md
#permalink: pretty
highlighter: pygments
safe: true
lsi: false
github:
project_title: "Wiki"
project_tagline: "Experimental Wiki with Jekyll"
redcarpet:
extensions: []

37
_layouts/default.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<title>{{ page.title }} :: {{ site.name }}</title>
</head>
<body>
<header>
<div class="container">
<h1>{{ site.name }}</h1>
<h2>{{ site.description }}</h2>
<section id="downloads">
<a href="https://github.com/mbirth/wiki/zipball/master" class="btn">Download as .zip</a>
<a href="https://github.com/mbirth/wiki/tarball/master" class="btn">Download as .tar.gz</a>
<a href="https://github.com/mbirth/wiki" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
</div>
</header>
<div class="container">
<section id="main_content">
{{ content }}
</section>
</div>
</body>
</html>

14
test.md Normal file
View File

@ -0,0 +1,14 @@
---
title: TEST
layout: default
---
### Test
**Hello world!**
```
#!/bin/bash
echo "Test!"
```