deno.land / x / lume@v2.1.4 / tests / assets / nav / _includes / main.vto

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
<html> <head> <title>{{ title }}</title> </head> <body> <nav> <ul style="display: flex; list-style: none; gap: 1em; padding: 0;"> {{ for item of nav.breadcrumb(url) }} <li><a href="{{ item.data?.url }}">{{ item.data?.title }}</a></li> {{ /for }} </ul> </nav> <h1>{{ title }}</h1> <nav> <ul> {{ for item of nav.menu().children }} <li> {{ include "./step.vto" { item } }} </li> {{ /for }} </ul> </nav> <nav> <ul> {{ for item of nav.menu("/", "menu=true").children }} <li> {{ include "./step.vto" { item } }} </li> {{ /for }} </ul> </nav> </body></html>
lume

Version Info

Tagged at
7 months ago