54 lines
1.7 KiB
Twig
54 lines
1.7 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block header_meta %}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{# The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags #}
|
|
<meta name="description" content="Point.im external tools">
|
|
<meta name="author" content="Alexey Skobkin">
|
|
<link rel="icon" href="{{ asset('bundles/skobkinpointtools/images/favicon.ico') }}">
|
|
{% endblock %}
|
|
|
|
<title>{% block header_title %}{% endblock %}</title>
|
|
|
|
{% block css %}
|
|
{# Bootstrap core CSS #}
|
|
<link href="//yastatic.net/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block head_js %}
|
|
{# HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries #}
|
|
{# Who uses IE??? #}
|
|
<!--[if lt IE 9]>
|
|
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block body %}
|
|
{# Upper navigation menu #}
|
|
{% block header_navbar %}{% endblock %}
|
|
|
|
{# Main container #}
|
|
<div class="container">
|
|
{% block container %}{% endblock %}
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
{% block footer %}{% endblock %}
|
|
</div>
|
|
</footer>
|
|
|
|
{# Footer JavaScripts for faster loading #}
|
|
{% block footer_js %}
|
|
<script src="//yastatic.net/jquery/2.1.3/jquery.min.js"></script>
|
|
<script src="//yastatic.net/bootstrap/3.3.1/js/bootstrap.min.js"></script>
|
|
{% endblock %}
|
|
{%- endblock %}
|
|
</body>
|
|
</html> |