Manasseh
06/05/2025, 6:18 PM{{#tables}}
<li class="list-none font-bold text-base text-white p-4 cursor-pointer">
<a class="no-underline text-white" href="#">{{this}}</a>
</li>
{{/tables}}
Assusming this model is passed to it:
mapOf("tables" to this.tableNames, "adminName" to configuration.adminName)
ozgurdemirel
06/05/2025, 6:27 PM{{#each tables}} <li class="list-none font-bold text-base text-white p-4 cursor-pointer"><a class="no-underline text-white" href="#">{{this}}</a></li> {{/each}}
Manasseh
06/05/2025, 6:28 PMozgurdemirel
06/05/2025, 6:30 PMManasseh
06/05/2025, 6:31 PM<html lang="en">
<head>
<script src="<https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4>"></script>
<title>Index</title>
</head>
<body>
<nav class="flex flex-row w-[70vw] text-center m-[5px_auto] bg-[#35373b] h-14">
<ul>
<li class="list-none font-bold text-base text-white p-4 cursor-pointer">
<a class="no-underline text-white" href="#">{{adminName}}</a>
</li>
{{#each tables}}
<li class="list-none font-bold text-base text-white p-4 cursor-pointer">
<a class="no-underline text-white" href="#">{{this}}</a>
</li>
{{/each}}
</ul>
</nav>
</body>
</html>
Manasseh
06/05/2025, 6:31 PMManasseh
06/05/2025, 6:31 PMManasseh
06/05/2025, 7:25 PMManasseh
06/05/2025, 7:25 PMManasseh
06/05/2025, 7:25 PMManasseh
06/05/2025, 7:54 PM<html lang="en">
<head>
<script src="<https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4>"></script>
<title>Index</title>
</head>
<body>
<nav class="flex flex-row w-[70vw] text-center m-[5px_auto] bg-[#35373b] h-14">
<p class="list-none font-bold text-base text-white p-4 cursor-pointer">
<a class="no-underline text-white" href="#">{{adminName}}</a>
</p>
{{#tables}}
<p class="list-none font-bold text-white p-4 cursor-pointer">
<a class="no-underline text-white" href="/">{{.}}</a>
</p>
{{/tables}}
</nav>
</body>
</html>
Manasseh
06/05/2025, 7:55 PMManasseh
06/05/2025, 7:55 PMManasseh
06/05/2025, 8:13 PM<html lang="en">
<head>
<script src="<https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4>"></script>
<title>Index</title>
</head>
<body>
<nav class="flex flex-row w-[70vw] text-center m-[5px_auto] bg-[#35373b] h-14">
<li class="list-none font-bold text-white p-4 cursor-pointer active:bg-[#000000]"
><a href="#" class="no-underline text-white">{{adminName}}</a></li>
{{#tables}}
<li class="list-none font-bold text-white p-4 cursor-pointer active:bg-[#000000]"
><a href="/" class="no-underline text-white text-[15px]">{{.}}</a></li>
{{/tables}}
</nav>
</body>
</html>
Manasseh
06/05/2025, 8:13 PM