This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=1024, user-scalable=no">
<title>LPIC Slides</title>
<link rel="stylesheet" href="core/deck.core.css">
<link rel="stylesheet" href="extensions/scale/deck.scale.css">
<link rel="stylesheet" href="themes/style/lpic_slides.css">
<link rel="stylesheet" href="themes/transition/horizontal-slide.css">
<script src="modernizr.custom.js"></script>
</head>
<body>
<!-- Begin slides. Just make elements with a class of slide. -->
<article class="deck-container">
<section class="slide">
<h2>LPIC-1 | 1/2</h2>
<ol class="rounded-list">
<li><a href="1_introduccion.html">Introducción</a></li>
<li><a href="2_comandos_basicos.html">Comandos Básicos</a></li>
<li><a href="3_redirecciones.html">Redirecciones y Pipes</a></li>
<li><a href="4_propiedades_ficheros.html">Propiedades de los ficheros</a></li>
<li><a href="5_administracion_software.html">Administración de software</a></li>
<li><a href="6_inicio">Edición y inicio de Linux</a></li>
</ol>
</section>
<section class="slide">
<h2>LPIC-1 | 2/2</h2>
<ol id="page2" class="rounded-list">
<li><a href="7_usuarios.html">Administración de usuarios y Grupos.</a></li>
<li><a href="8_procesos.html">Administración de procesos</a></li>
<li><a href="9_log.html">Gestión de logs</a></li>
</ol>
</section>
</article>
<!-- End slides. -->
<script src="jquery-1.7.2.min.js"></script>
<script src="core/deck.core.js"></script>
<!-- <script src="extensions/scale/deck.scale.js"></script> -->
<script>
$(function() {
$.deck('.slide');
});
</script>
</body>
</html>