Skip to content

Commit 4a9c336

Browse files
author
Tom Clark
committed
Ignore _site directory and add layouts for jekyll support testing
1 parent 51aa72f commit 4a9c336

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.rvmrc
2+
_site/

_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+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
{% if page.title %}
7+
<title>{{ page.title }} - {{ site.title }}</title>
8+
{% else %}
9+
<title>{{ site.title }}</title>
10+
{% endif %}
11+
12+
<link rel="stylesheet" href="stylesheets/styles.css">
13+
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
14+
<script src="javascripts/scale.fix.js"></script>
15+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
16+
<!--[if lt IE 9]>
17+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
18+
<![endif]-->
19+
</head>
20+
<body>
21+
<div class="wrapper">
22+
<header>
23+
<h1>tutorials.github.com</h1>
24+
<p>Decentralized polyglot tutorials</p>
25+
<p class="view"><a href="https://github.com/tutorials/pages">View the Project on GitHub <small>tutorials/pages</small></a></p>
26+
<ul>
27+
<li><a href="https://github.com/tutorials/pages/zipball/master">Download <strong>ZIP File</strong></a></li>
28+
<li><a href="https://github.com/tutorials/pages/tarball/master">Download <strong>TAR Ball</strong></a></li>
29+
<li><a href="https://github.com/tutorials/pages">Fork On <strong>GitHub</strong></a></li>
30+
</ul>
31+
</header>
32+
<section>
33+
{{ content }}
34+
</section>
35+
<footer>
36+
<p>This project is maintained by <a href="https://github.com/tutorials">tutorials</a></p>
37+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
38+
</footer>
39+
</div>
40+
<!--[if !IE]><script>fixScale(document);</script><!--<![endif]-->
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)