Skip to content

Commit fbe3c45

Browse files
committed
test jekyll
1 parent 583e1d1 commit fbe3c45

File tree

3 files changed

+38
-163
lines changed

3 files changed

+38
-163
lines changed

_layouts/main.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!doctype html>
2+
<html class="no-js" lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>{% if page.title %}{{ page.title }} • {% endif %}{{ site.title }}</title>
7+
{% if page.description %}
8+
<meta name="description" content="{{ page.description }}" />
9+
{% endif %}
10+
<link rel="stylesheet" href="css/app.css" />
11+
<script src="bower_components/modernizr/modernizr.js"></script>
12+
</head>
13+
<body>
14+
<div class="top">
15+
<header>
16+
<div class="logo"><a href ="/">Awesome</a></div>
17+
</header>
18+
</div>
19+
20+
<div id="content-wrapper">
21+
<h1>{{ page.title }}</h1>
22+
{{ content }}
23+
</div>
24+
25+
<script src="bower_components/jquery/jquery.js"></script>
26+
<script src="bower_components/foundation/js/foundation.min.js"></script>
27+
<script src="js/app.js"></script>
28+
</body>
29+
</html>

index.html

-163
This file was deleted.

index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: main
3+
title: Welcome
4+
description: Test page
5+
categories: none
6+
---
7+
8+
<h1>Hey!</h1>
9+
<p>test test test</p>

0 commit comments

Comments
 (0)