-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontribute-mdn.html
140 lines (139 loc) · 4.88 KB
/
contribute-mdn.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/css/reveal.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/css/theme/white.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/lib/css/zenburn.min.css'>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.8.2/css/all.css'>
<link rel='stylesheet' href='css/contribute-mdn.css'>
</head>
<body>
<div class='reveal'>
<div class='slides'>
<section>
<h1>Contributing to
<img src='img/mdn-logo.png' />
</h1>
<p class='fragment'>
<small>
<social-link
icon='twitter'
name='@mozillaperu'
url='https://twitter.com/mozillaperu'
>
</social-link>
</small>
</p>
</section>
<section>
<h2>What is ..</h2>
<div class='fragment'>
MDN Web Docs (tambien conocido como MDN - Mozilla Developer Network)
es un proyecto de documentacion de estándares web (CSS, HTML y JavaScript),
las tecnologías de Mozilla y otros temas de desarrollo.
</div>
<div class='fragment'>
<img src='img/mdn-original.png' />
<img src='img/mdn-2013.jpeg' />
<img src='img/mdn-current.png' />
<img src='img/mdn-15y.jpeg' />
</div>
<aside class='notes'>
Donde todos tienen permiso de añadir y editar contenido. No necesitas ser un programador
o un experto en tecnología
</aside>
</section>
<section>
<h2>What can do?</h2>
<ul>
<li class='fragment'><a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute/Fixing_MDN_content_bugs'>
Fixing content bugs
</a></li>
<li class='fragment'><a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute/Howto/Create_and_edit_pages#Editing_an_existing_page'>
Update and existing article.
</a></li>
<li class='fragment'><a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute/Howto/Write_an_article_to_help_learn_about_the_Web'>
Write an article to help people learn about the web
</a></li>
<li class='fragment'><a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute/Howto/Convert_code_samples_to_be_live'>
convert code samples to be "live"
</a></li>
<li class='fragment'><a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute/Structures/API_references'>
Write or update an API reference
</a></li>
<li class='fragment'>
Localize MDN content
</li>
<li class='fragment'>
Promote MDN
</li>
</ul>
</section>
<section>
<h2>How?</h2>
<ul>
<li class='fragment step'>Paso 1: Crea una cuenta en MDN</li>
<li class='fragment step'>Paso 2: Elige en qué quieres contribuir</li>
<li class='fragment step'>Paso 3: Lleva a cabo la tarea</li>
</ul>
</section>
<section>
<h2>Resources:</h2>
<ul>
<li>
<a href='https://developer.mozilla.org/en-US/docs/MDN/Contribute'>
Contribuir a MDN
</a>
</li>
<li>
<a href='https://developer.mozilla.org/es/docs/MDN/Contribute/Howto'>
Guías prácticas (de como colaborar en MDN)
</a>
</li>
<li>
<a href='https://developer.mozilla.org/es/docs/MDN/Contribute/Getting_started'>
Primero Pasos en MDN
</a>
</li>
<li>
<a href='https://hacks.mozilla.org/2020/07/mdn-web-docs-15-years-young/'>
MDN Web Docs: 15 years young
</a>
</li>
<li>
<a href='https://hacks.mozilla.org/2020/10/mdn-web-docs-evolves-lowdown-on-the-upcoming-new-platform/'>
MDN Web Docs evolves! Lowdown on the upcoming new platform
</a>
</li>
</ul>
</section>
<section>
<h1>Gracias!</h1>
<img src='img/logo1.png' />
<p class='fragment'>
<social-link
url='https://github.com/mozillaperu'
icon='github'>
</social-link>
<social-link
url='https://twitter.com/mozillaperu'
icon='twitter'>
</social-link>
<social-link
url='https://discord.gg/rU2QZAx'
icon='discord'
name='mozillaperu'
>
</social-link>
</p>
</section>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.7.0/js/reveal.min.js'></script>
<script src='js/components.js' type='module'></script>
<script>
Reveal.initialize();
</script>
</body>
</html>