2015-08-30 12:34:43 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
|
|
|
<title>{% block title %}{% endblock %} | Halftone</title>
|
2015-09-29 11:13:43 -04:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
2015-08-30 12:34:43 -04:00
|
|
|
<link rel="stylesheet" href="/css/main.css" media="screen,projection"/>
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
|
|
|
<!--<script type="text/javascript" src="/js/modules/awesome-form.js"></script>-->
|
|
|
|
<script type="text/javascript" src="/js/main.js"></script>
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
<div class="container">
|
2016-11-18 10:25:02 -05:00
|
|
|
{% include 'templates/partials/header.twig' %}
|
2015-08-30 12:34:43 -04:00
|
|
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-18 10:25:02 -05:00
|
|
|
|
|
|
|
{% include 'templates/partials/footer.twig' %}
|
2015-08-30 12:34:43 -04:00
|
|
|
</body>
|
|
|
|
</html>
|