Skip to content

Commit 2d51dec

Browse files
authored
Merge pull request #6 from python-la-paz/update/taicoding/s2
Update content of sesion 2
2 parents a34f2e9 + cec2671 commit 2d51dec

File tree

9 files changed

+1485
-0
lines changed

9 files changed

+1485
-0
lines changed

content/sesion02/Readme.md

Lines changed: 1408 additions & 0 deletions
Large diffs are not rendered by default.

content/sesion02/img/img01.jpeg

223 KB
Loading

content/sesion02/img/img02.png

71 KB
Loading

content/sesion02/img/img03.png

13.8 KB
Loading

content/sesion02/img/img04.png

33.3 KB
Loading

content/sesion02/img/img05.png

20.3 KB
Loading

content/sesion02/img/img06.png

27.9 KB
Loading

content/sesion02/index.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!doctype html>
2+
<html lang="es">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Sesión 02 OOP - Python Study Group</title>
7+
<link rel="stylesheet" href="../../dist/reveal.css">
8+
<link rel="stylesheet" href="../../dist/theme/black.css" id="theme">
9+
<link rel="stylesheet" href="../../plugin/highlight/dracula.css">
10+
<link rel="stylesheet" href="../../plugin/pointer/pointer.css" />
11+
<link rel="stylesheet" href="../custom.css">
12+
</head>
13+
14+
<body>
15+
<div class="reveal">
16+
<div class="slides">
17+
<section data-markdown="Readme.md"></section>
18+
</div>
19+
</div>
20+
<a class="custom-btn-home" href="../../"><img src="../homeico.svg" /></a>
21+
22+
<script src="../../dist/reveal.js"></script>
23+
<script src="../../plugin/markdown/markdown.js"></script>
24+
<script src="../../plugin/highlight/highlight.js"></script>
25+
<script src="../../plugin/notes/notes.js"></script>
26+
<script src="../../plugin/math/math.js"></script>
27+
<script src="../../plugin/pointer/pointer.js"></script>
28+
<script src="../../plugin/zoom/zoom.js"></script>
29+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/plugin/mermaid/mermaid.js"></script>
30+
<script>
31+
32+
Reveal.initialize({
33+
controls: true,
34+
progress: true,
35+
history: true,
36+
center: true,
37+
pdfMaxPagesPerSlide: 1,
38+
slideNumber: 'c/t',
39+
plugins: [RevealMarkdown, RevealHighlight, RevealNotes, RevealMath.KaTeX, RevealZoom, RevealPointer, RevealMermaid],
40+
pointer: {
41+
key: "q", // key to enable pointer, default "q", not case-sensitive
42+
color: "red", // color of a cursor, default "red" any valid CSS color
43+
opacity: 0.9, // opacity of cursor, default 0.8
44+
pointerSize: 18, // pointer size in px, default 12
45+
alwaysVisible: false, // should pointer mode be always visible? default "false"
46+
tailLength: 10, // NOT IMPLEMENTED YET!!! how long the "tail" should be? default 10
47+
}
48+
});
49+
50+
</script>
51+
<!-- Google tag (gtag.js) -->
52+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9YQTVC2B73"></script>
53+
<script>
54+
window.dataLayer = window.dataLayer || [];
55+
function gtag() { dataLayer.push(arguments); }
56+
gtag('js', new Date());
57+
58+
gtag('config', 'G-9YQTVC2B73');
59+
</script>
60+
</body>
61+
62+
</html>

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,21 @@ <h4>Representando el mundo real en clases</h4>
3535
<br>
3636
<h6>2025</h6>
3737
</section>
38+
<section data-background-image="content/psg-bg-dark.png" data-background-size="100%">
39+
<!-- <img src="/content/Logo.png" alt="Python La Paz" width="200px" height="200px"> -->
40+
<!-- <h2>Python Study Group</h2> -->
41+
<br>
42+
<br>
43+
<br>
44+
<br>
45+
<a href="content/sesion02">
46+
Sesión 02
47+
<h4>Objetos y Atributos</h4>
48+
<h4>Manejo de instancias</h4>
49+
</a>
50+
<br>
51+
<h6>2025</h6>
52+
</section>
3853
</div>
3954
</div>
4055

0 commit comments

Comments
 (0)