First commit.
This still needs some work on the installer, which is not added yet.
This commit is contained in:
44
views/base.html.twig
Normal file
44
views/base.html.twig
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<base href="{{ baseURL }}">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<title>Change blindness test</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Change blindness study">
|
||||
<meta name="author" content="Raymond Jelierse <r.jelierse@student.tudelft.nl>">
|
||||
|
||||
<!-- Le styles -->
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
<!-- Le jQuery -->
|
||||
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
||||
|
||||
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<article class="container">
|
||||
{% block content %}
|
||||
<p>No content here.</p>
|
||||
{% endblock %}
|
||||
</article>
|
||||
<!-- /container -->
|
||||
|
||||
<!-- Le javascript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script type="text/javascript" src="js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- Le APIs -->
|
||||
{% block webapis %}
|
||||
{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user