You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
545 B

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Web-программирование</title>
<link rel="icon" type="image/png" sizes="256x256" href="static/favicon.png">
<link rel="stylesheet" type="text/css" href="static/styles.css">
</head>
<body>
<div class="main">
<h1>Лабораторные работы</h1>
<div class="labs">
{{ range $k, $v := . }}
<a href="lab?number={{ $k }}" {{ if not .Complete}} class="blocked" {{ end }}>
{{ $k }}
</a>
{{ end }}
</div>
</div>
</body>
</html>