Skip to content

Commit

Permalink
Adds template layout. (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichellanneLi authored and Lauren Burroughs committed Apr 21, 2017
1 parent 77d4ed7 commit e68e659
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions STYLEGUIDE_TEMPLATE_SPRESS/src/layouts/template.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ page.title }}{% endblock %} | {{ site.title }}</title>
<link rel="stylesheet" href="{{ site.url }}/assets/css/styles.css">
<link rel="shortcut icon" href="{{ site.url }}/assets/favicon.ico" />
</head>
<body>

{% block content_wrapper %}
{% block content %}
{{ page.content }}
{% endblock %}
{% endblock %}

{{ include("scripts.html") }}
</body>
</html>

0 comments on commit e68e659

Please sign in to comment.