Skip to content

Commit 3bc6d87

Browse files
committed
Merge pull request #67 from iblancasa/master
Adding last page
2 parents 015e526 + 68812bc commit 3bc6d87

3 files changed

Lines changed: 110 additions & 1 deletion

File tree

images/pic05.jpg

414 KB
Loading

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h2>¡Participa!</h2>
123123
¿A qué esperas para subir el tuyo?.
124124
</p>
125125
<ul class="actions">
126-
<li><a href="#" class="button">Leer más</a></li>
126+
<li><a href="participa.html" class="button">Leer más</a></li>
127127
</ul>
128128
<small class="imgauthor">
129129
Imagen: <a href="https://github.com/jj">@JJ</a>

participa.html

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
<!DOCTYPE HTML>
2+
<!--
3+
Landed by HTML5 UP
4+
html5up.net | @n33co
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
-->
7+
<html>
8+
<head>
9+
<title>Hack-Miniblip - Programando la placa</title>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1" />
12+
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
13+
<link rel="stylesheet" href="assets/css/main.css" />
14+
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
15+
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
16+
</head>
17+
<body>
18+
<div id="page-wrapper">
19+
20+
<!-- Header -->
21+
<header id="header">
22+
<h1 id="logo"><a href="#">Participa</a></h1>
23+
<nav id="nav">
24+
<ul>
25+
<li><a href="index.html">Hack-Miniblip</a></li>
26+
<li><a href="#one">¿Conoces Git?</a></li>
27+
<li><a href="#two">Ficheros fuente</a></li>
28+
<li><a href="#three">Binarios</a></li>
29+
</ul>
30+
</nav>
31+
</header>
32+
33+
<!-- Main -->
34+
<div id="main" class="wrapper style1">
35+
<div class="container">
36+
<header class="major">
37+
<h2>Participa</h2>
38+
<p>Guía sobre cómo contribuir al repositorio y que tu código no quede en un cajón</p>
39+
</header>
40+
41+
<!-- Content -->
42+
<section id="content">
43+
<a href="#" class="image fit"><img src="images/pic05.jpg" alt="" /></a>
44+
<small class="imgauthor">Imagen: <a href="https://github.com/jj">@JJ</a>, <a href="https://github.com/fergunet">@fergunet</a>,
45+
<a href="https://twitter.com/cir_co_lab">@cir_co_lab</a></small>
46+
<h3 id="one">¿Sabes qué es Git? ¿Y GitHub?</h3>
47+
<p>Si nunca has utilizado Git o GitHub, debes empezar por ahí. No es difícil,
48+
vuelve en cuanto sepas cómo funciona.</p>
49+
50+
<h3 id="two">Repositorio de ficheros fuente</h3>
51+
<p>Sube los ficheros fuente a <a href="https://github.com/hack-miniblip/hack-miniblip.github.io">este
52+
repositorio</a> (primero haz un "fork" y, cuando acabes, haz un "pull request" -asegúrate que antes has
53+
hecho pull desde el repositorio "maestro"-).</p>
54+
<p>Puedes preguntar si tienes dudas
55+
<a href="https://github.com/hack-miniblip/hack-miniblip.github.io/issues">(abriendo un issue)</a>.
56+
</p>
57+
58+
<h3 id="three">Repositorio de binarios</h3>
59+
<p>Las instrucciones muy similares al caso anterior, pero <a href="https://github.com/hack-miniblip/apps/">
60+
la idea es crear un repositorio solo con los binarios</a>.
61+
</p>
62+
<p>Se pide que se respete la siguiente estructura de ficheros:<br>
63+
./&lt;projectName&gt;<br>
64+
./&lt;projectName&gt;/firmware.bin<br>
65+
./&lt;projectName&gt;/cover.png (64x64 / optional)<br>
66+
./&lt;projectName&gt;/README.md
67+
</p>
68+
<p>Y que añadas tu proyecto al JSON de la raíz del repositorio (con la estructura que sigue):
69+
<code><br>
70+
{<br>
71+
"name": "anim",<br>
72+
"author" : "Your GitHub/MBED id",<br>
73+
"version": "0.0.1",<br>
74+
"tags": ["light","sound","game"],<br>
75+
"md5": "efefefababab" ,<br>
76+
"cover": true,<br>
77+
"license": "GPL, Apache or whatever",<br>
78+
"source": "http://github.com/this/is/the/source"<br>
79+
}
80+
</code>
81+
</p>
82+
<p> Para generar el campo md5: <pre>md5sum firmware.bin</pre></p>
83+
</section>
84+
85+
</div>
86+
</div>
87+
88+
<!-- Footer -->
89+
<footer id="footer">
90+
<ul class="copyright">
91+
<li>&copy; The Artistic License 2.0. <a href="https://github.com/hack-miniblip/">
92+
Hack-Miniblip</a></li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
93+
</ul>
94+
</footer>
95+
96+
</div>
97+
98+
<!-- Scripts -->
99+
<script src="assets/js/jquery.min.js"></script>
100+
<script src="assets/js/jquery.scrolly.min.js"></script>
101+
<script src="assets/js/jquery.dropotron.min.js"></script>
102+
<script src="assets/js/jquery.scrollex.min.js"></script>
103+
<script src="assets/js/skel.min.js"></script>
104+
<script src="assets/js/util.js"></script>
105+
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
106+
<script src="assets/js/main.js"></script>
107+
108+
</body>
109+
</html>

0 commit comments

Comments
 (0)