-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (67 loc) · 2.71 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Projektowanie i implementacja systemów webowych</title>
<meta name="description" content="Strona startowa">
<meta name="author" content="Maciej Małecki">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/night.css" id="theme">
<link rel="stylesheet" href="css/custom.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h3>Projekt i implementacja systemów webowych</h3>
<h4>- Wykłady -</h4>
<div class="r-hstack more-text">
<ol>
<li><a href="01_wprowadzenie_html_css.html">Wprowadzenie, HTML i CSS</a></li>
<li><a href="02_javascript_typescript.html">Języki JavaScript i TypeScript</a></li>
<li><a href="03-backend.html">Backendy systemów webowych</a></li>
<li><a href="04-persistence">Mapowanie obiektowo-relacyjne</a></li>
</ol>
<div style="width: 2em;"></div>
<ol start="5">
<li><a href="05_angular.html">SPA i Angular</a></li>
<li><a href="06_reactive.html">Programowanie reaktywne</a></li>
<li><a href="https://github.com/pwr-piisw/wyklady/raw/master/07_cloud.pptx">Cloud computing</a></li>
<li><a href="08_frontend-testing.html">Testowanie</a></li>
</ol>
</div>
<hr>
<p>Więcej informacji: <a href="https://pwr-piisw.github.io/materialy/">https://pwr-piisw.github.io/materialy/</a>.</p>
</section>
</div>
<div
id="cgLogo"
style="background: url(img/cg-logo.svg); position: absolute; bottom: 20px; left: 20px; width: 170px; height: 38px;">
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
width: 1200,
hash: true,
navigationMode: 'linear',
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
</script>
</body>
</html>