Jekyll stuff

This commit is contained in:
larshp 2017-05-07 13:56:45 +00:00
parent 5fad05da7c
commit 4181576489
6 changed files with 23 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
docs/.jekyll-metadata
docs/_site
docs/Gemfile.lock

View File

@ -1,2 +1,8 @@
title: abapGit Documentation
keep_files: [explore.html, repos.json]
defaults:
-
scope:
path: "" # an empty string here means all files in the project
values:
layout: "default"

View File

@ -0,0 +1 @@
footer

3
docs/_includes/head.html Normal file
View File

@ -0,0 +1,3 @@
<head>
<meta charset="utf-8">
</head>

View File

@ -0,0 +1 @@
header

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="main-content">
{{ content }}
</div>
{% include footer.html %}
</body>
</html>