48 lines
1.9 KiB
Twig
48 lines
1.9 KiB
Twig
{% set route = app.request.get('_route') %}
|
|
<!DOCTYPE html>
|
|
<html class="no-js" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
<link rel="stylesheet" href="/css/foundation.min.css" />
|
|
<link rel="stylesheet" href="/css/app.css" />
|
|
{% block stylesheets %}{% endblock %}
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
|
</head>
|
|
<body>
|
|
<main class="page-pad">
|
|
<div class="top-bar">
|
|
<div class="top-bar-left">
|
|
<ul class="menu expanded align-center">
|
|
<li class="{{ route starts with 'camera_' ? 'is-active' }}">
|
|
<a href="{{ path('camera_index') }}">Cameras</a>
|
|
</li>
|
|
<li class="{{ route starts with 'camera-type_' ? 'is-active' }}">
|
|
<a href="{{ path('camera-type_index') }}">Camera Types</a>
|
|
</li>
|
|
<li class="{{ route starts with 'lens_' ? 'is-active' }}">
|
|
<a href="{{ path('lens_index') }}">Lenses</a>
|
|
</li>
|
|
<li class="{{ route starts with 'flash_' ? 'is-active' }}">
|
|
<a href="{{ path('flash_index') }}">Flashes</a>
|
|
</li>
|
|
<li class="{{ route starts with 'previously-owned-camera' ? 'is-active' }}">
|
|
<a href="{{ path('previously-owned-camera_index') }}">Previously Owned Cameras</a>
|
|
</li>
|
|
<li class="{{ route starts with 'previously-owned-lens' ? 'is-active' }}">
|
|
<a href="{{ path('previously-owned-lens_index') }}">Previously Owned Lenses</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
<script src="/js/vendor/jquery.js"></script>
|
|
<script src="/js/vendor/what-input.js"></script>
|
|
<script src="/js/vendor/foundation.min.js"></script>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|