-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 2.4 KB
/
index.html
File metadata and controls
58 lines (53 loc) · 2.4 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mini Curso Git e GitHub para Trabalho em Equipe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="presentation-container">
<!-- Header with navigation -->
<header class="presentation-header">
<div class="header-content">
<h1 class="presentation-title">Git & GitHub para Equipes</h1>
<div class="slide-counter">
<span id="current-slide">1</span> / <span id="total-slides">54</span>
</div>
<button class="fullscreen-btn" id="fullscreen-btn" title="Tela cheia">
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
<path d="M1 1v4h2V3h2V1H1zm10 0v2h2v2h2V1h-4zm2 10v2h-2v2h4v-4h-2zM5 13v2H1v-4h2v2h2z"/>
</svg>
</button>
</div>
<div class="progress-bar">
<div class="progress-fill" id="progress-fill"></div>
</div>
</header>
<!-- Main presentation area -->
<main class="presentation-main">
<div class="slide-container" id="slide-container">
<!-- Slides will be generated dynamically -->
</div>
</main>
<!-- Navigation controls -->
<nav class="presentation-nav">
<button class="nav-btn" id="prev-btn" title="Slide anterior">
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
<path d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/>
</svg>
</button>
<div class="slide-info">
<span class="module-indicator" id="module-indicator">Módulo 1</span>
</div>
<button class="nav-btn" id="next-btn" title="Próximo slide">
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor">
<path d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</button>
</nav>
</div>
<script src="app.js"></script>
</body>
</html>