Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit d902009

Browse files
committed
initial version of jekyll homepage
0 parents  commit d902009

13 files changed

+603
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# files generated by jekyll
2+
_site*/
3+
4+
# lock files
5+
*.lock

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
require 'json'
4+
require 'open-uri'
5+
versions = JSON.parse(open('https://pages.github.com/versions.json').read)
6+
7+
gem 'github-pages', versions['github-pages']
8+
gem 'therubyracer', '~> 0.12.1'

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: "MacGitver Website"
2+
title: "MacGitver by Sascha Cunz and Nils Fenner"
3+
markdown: rdiscount

_layouts/default.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset='utf-8'>
5+
<title>{{ site.title }}</title>
6+
<meta name="description" content="{{ site.description }}">
7+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
9+
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
10+
<link href="/css/stylesheet.css" rel="stylesheet" />
11+
12+
<!--[if lt IE 9]>
13+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
14+
<![endif]-->
15+
<head/>
16+
17+
<body>
18+
<header>
19+
<div class="inner">
20+
<h1>{{ site.name }}</h1>
21+
<a href="https://github.com/macgitver" class="button"><small>View project on</small>GitHub</a>
22+
</div>
23+
</header>
24+
25+
<div id="content-wrapper">
26+
<div class="inner clearfix">
27+
<section id="main-content">
28+
29+
{{ content }}
30+
31+
</section>
32+
33+
<aside id="sidebar">
34+
<a href="https://download.macgitver.org" class="button">Download</a>
35+
<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.</p>
36+
</aside>
37+
38+
</div>
39+
</div>
40+
41+
</body>
42+
</html>

about/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: This is the main Page of Macgitver
3+
layout: default
4+
---
5+
6+
Test

0 commit comments

Comments
 (0)