Files
tf-adonis/resources/views/pages/sections.edge
2026-01-28 14:11:51 +01:00

19 lines
276 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<h1>
Sections
</h1>
<ul>
@each(section in sections)
<li> {{ section.name }} <button>🗑</button></li>
@end
<li>Informatique <button>🗑</button></li>
</ul>
</body>
</html>