19 lines
276 B
Plaintext
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>
|