Skip to content
Snippets Groups Projects
Commit 1d9ec6ad authored by Greg Wilson's avatar Greg Wilson
Browse files

Overly-zealous .gitignore had excluded the `_layouts` directory - this PR fixes it.

1. Modify `.gitignore` to only ignore HTML files in the current directory.
2. Add `_includes/page.html` template.
parent 9fcf1b95
Branches
Tags
No related merge requests found
*~
*.pyc
*.html
./*.html
.DS_Store
_site
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
$header$
</head>
<body>
$banner$
$if(title)$<h1>$title$</h1>$endif$
$body$
$footer$
$javascript$
</body>
</html>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment