Skip to content

Commit 16a230f

Browse files
author
Ben Kenobi
committed
adds jekyll test
1 parent f9d8f8d commit 16a230f

File tree

7 files changed

+50
-0
lines changed

7 files changed

+50
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Numerous always-ignore extensions
2+
*.diff
3+
*.err
4+
*.orig
5+
*.log
6+
*.rej
7+
*.swo
8+
*.swp
9+
*.vi
10+
*~
11+
*.sass-cache
12+
13+
# OS or Editor folders
14+
.DS_Store
15+
Thumbs.db
16+
.cache
17+
18+
# Static site output
19+
_site

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages'

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
markdown: rdiscount

_includes/.gitignore

Whitespace-only changes.

_layouts/default.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{ page.title }}</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
</head>
8+
<body>
9+
10+
{{ content }}
11+
12+
</body>
13+
</html>

_layouts/post.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
title: This is just a placeholder post
4+
---
5+
6+
<h1>{{ post.title }}</h1>
7+
8+
{{ content }}
9+

_posts/1970-01-01-placeholder-post.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: post
3+
title: Placeholder post
4+
---
5+
6+
**{{ page.title }}** written in markdown.

0 commit comments

Comments
 (0)