-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html.twig.copy
More file actions
45 lines (45 loc) · 981 Bytes
/
example.html.twig.copy
File metadata and controls
45 lines (45 loc) · 981 Bytes
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
44
45
{% extends 'base.html.twig' %}
{% block body %}
<header class="header">
<a class="header-logo" href="/">
<img alt="Logo" height="44px" src="{{ asset('images/logo.svg') }}" width="187px"/>
</a>
<nav class="header-menu">
<ul class="header-menu-list">
<li class="header-item">
<a class="header-link" href="">
{a.classess}
</a>
</li>
<li class="header-item">
<a class="header-link" href="">
{a.timetable}
</a>
</li>
<li class="header-item">
<a class="header-link" href="">
{a.clubs}
</a>
</li>
<li class="header-item">
<a class="header-link" href="">
{a.nutrition}
</a>
</li>
<li class="header-item">
<a class="header-link" href="">
{a.free_trial}
</a>
</li>
<li class="header-item is-search">
<a class="header-link" href="">
{a.search}
</a>
</li>
</ul>
<button class="header-menu-button white">
{button.login}
</button>
</nav>
</header>
{% endblock %}