-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html.twig
More file actions
43 lines (38 loc) · 1.29 KB
/
example.html.twig
File metadata and controls
43 lines (38 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends 'base.html.twig' %}
{% block body %}
<header class="header">
<a href="/" class="header-logo">
<img
src="{{ asset('images/logo.svg') }}"
alt="Logo"
width="187px"
height="44px"
>
</a>
<nav class="header-menu">
<ul class="header-menu-list">
<li class="header-item">
<a href="" class="header-link">Classess</a>
</li>
<li class="header-item">
<a href="" class="header-link">Timetable</a>
</li>
<li class="header-item">
<a href="" class="header-link">Clubs</a>
</li>
<li class="header-item">
<a href="" class="header-link">Nutrition</a>
</li>
<li class="header-item">
<a href="" class="header-link">Free Trial</a>
</li>
<li class="header-item is-search">
<a href="" class="header-link">Search</a>
</li>
</ul>
<button class="header-menu-button white">
Login
</button>
</nav>
</header>
{% endblock %}