Skip to content

Commit

Permalink
Add some content to the default scaffold.
Browse files Browse the repository at this point in the history
  • Loading branch information
mblayman committed Oct 10, 2015
1 parent 5fde2de commit ebf5fd0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions handroll/scaffolds/default/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Congratulations and welcome!
template: base.j2

---
This is your first handroll site! Congratulations.

You'll notice that things are a little sparse around here.
We think that your content is your own.
What we've included here is enough to get you on
your feet without burying you in details.
16 changes: 16 additions & 0 deletions handroll/scaffolds/default/templates/base.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}{{ title }}{% endblock %} -
handrolled for excellence</title>
<meta name='viewport' content='width=device-width' />
</head>
<body>
<div id='container'>
<h1>{{ self.title() }}</h1>
{% block content %}{{ content }}
{% endblock %}
</div>
</body>
</html>

0 comments on commit ebf5fd0

Please sign in to comment.