-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl_01.html
54 lines (51 loc) · 1.86 KB
/
pl_01.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Angular2</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href="https://devmeetings.github.io/devmeeting-angular/css/bootstrap-theme-cyborg/cyborg.min.css"
rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<header>
<h1 class="text-center">Wyświetlanie danych</h1>
</header>
<hr>
<section>
<h4>
<span class="label label-success">obowiązkowe</span> 1.1 Wyświetl pojedynczy kafelek produktu statycznie
</h4>
<h5 class="text-muted">
Adres zdjęcia pobierz z <strong>lorempixel</strong>.<br/>
Możesz użyć
<code>https://xplatform.org/ext/lorempixel/</code><code>{width}/{height}/{category}</code>
<br/>
</h5>
</section>
<section>
<h4>
<span class="label label-success">obowiązkowe</span> 1.2 Wyświetl listę produktów
</h4>
<h5 class="text-muted">Użyj dyrektywy NgFor</h5>
</section>
<section>
<h4>
<span class="label label-warning">warto</span> 1.3 Oznacz niektóre produkty jako promowane.
</h4>
</section>
<section>
<h4>
<span class="label label-danger">dodatkowe</span> 1.4 Wyświetl listę tagów produktu.
</h4>
</section>
</div>
</div>
</div>
<script src="https://devmeetings.github.io/devmeeting-angular/tasks.js"></script>
</body>
</html>