- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
124 lines (108 loc) · 6.66 KB
/
Copy pathindex.html
File metadata and controls
124 lines (108 loc) · 6.66 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
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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>Github Pages by Pelufito</title>
<!-- Latest compiled and minified CSS -->
<linkrel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<linkrel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" media="screen" charset="utf-8">
<linkrel="stylesheet" href="css/style.css" charset="utf-8">
<!-- Latest compiled and minified JavaScript -->
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!--Fuentes-->
<linkhref='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<linkhref='https://fonts.googleapis.com/css?family=Boogaloo' rel='stylesheet' type='text/css'>
<linkhref='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<divclass="container-fluid">
<divclass="row">
<divclass="col-xs-12">
<divclass="jumbotron">
<h1class="text-center">GitHub Pages</h1>
<pclass="text-center">El espacio web gratuito para vos, tu organización y tus proyectos</p>
<divclass=" col-xs-8 col-xs-offset-2 col-lg-4 col-lg-offset-4 text-center ">
<imgsrc="img/octocat.png" alt="" class="img-responsive">
<ahref="#verMas" data-toggle="tooltip" data-placement="bottom" title="ver más"><spanclass=" ion-android-arrow-dropdown-circle"></span></a>
</div>
</div>
</div>
</div>
</div>
</header>
<divclass="container-fluid">
<divclass="row">
<divclass="col-xs-12">
<h2class="text-center" id="verMas">GitHub Pages para usuarios u organizaciones</h2>
<pclass="text-center textoExplicativo">Creamos un repositorio con nuestro nombre de usuario o nombre de la organización seguido de <b>.github.io</b></p>
<divclass="col-xs-12 col-lg-8 col-lg-offset-2 ">
<imgsrc="img/user.png" alt="" class="img-responsive">
</div>
<divclass="col-xs-12 infoMenor">
<pclass="text-center textoExplicativo">Ya con el repositorio creado tenemos 2 opciones para trabajar con nuestros commits</p>
<divclass="col-xs-12 col-lg-6">
<pclass="textoExplicativo text-center">Clonar un repositorio ya existente</p>
<pclass="textoCodigo text-center"><kbd>$ git clone https://github.com/nombreDeUsuario/nombreDeUsuario.github.io</kbd></p>
</div>
<divclass="col-xs-12 col-lg-6">
<pclass="textoExplicativo text-center">Vincularlo a un repositorio local</p>
<pclass="textoCodigo text-center"><kbd>$ git remote add origin https://github.com/nombreDeUsuario/nombreDeUsuario.github.io</kbd></p>
</div>
</div>
</div>
</div>
<divclass="espacioRow"></div>
<divclass="row">
<divclass="col-xs-12 verProyectos">
<h2class="text-center">GitHub Pages para proyectos</h2>
<pclass="text-center textoExplicativo">Creamos un repositorio nuevo o un branch en nuestro repositorio.</p>
<divclass="col-xs-12 textoBranch">
<pclass="textoExplicativo text-center">Creamos el nuevo branch con el nombre gh-pages</p>
<pclass="textoCodigo text-center"><kbd>$ git branch gh-pages</kbd></p>
<pclass="textoExplicativo text-center">El commit que queremos que sea visible lo guardaremos en nuestro nuevo branch.</p>
<pclass="textoCodigo text-center"><kbd>$ git push origin gh-pages</kbd></p>
</div>
<pclass="textoExplicativo">Todos los commits y cambios que hagamos en la rama gh-pages, se verán reflejados en esta URL. GitHub Pages es de las mejores formas de mostrar nuestros proyectos al mundo a través de un sitio web gratuito. Podemos usarlo para un portafolio,
landing page e incluso para crear un blog. Todo de manera gratuita y con repositorios ilimitados.</p>
<h4class="textoExplicativo text-center">
Para ver nuestros proyectos ingresamos en la ruta: http://nombreUsuario.github.io/nombreRepositorio
</h4>
</div>
</div>
<divclass="espacioRow"></div>
<divclass="row">
<divclass="col-xs-12 infoEnlaces">
<h2class="text-center">Enlaces interesantes</h2>
<ulclass="list-unstyled">
<liclass="text-center"><ahref="http://rogerdudler.github.io/git-guide/index.es.html">Guia rapida y sencilla (Español)</a></li>
<liclass="text-center"><ahref="https://git-scm.com/book/en/v2">Git Community Book</a></li>
<liclass="text-center"><ahref="https://help.github.com/">Github Help</a></li>
<liclass="text-center"><ahref="https://marklodato.github.io/visual-git-guide/index-en.html">Guia visual de Git (español)</a></li>
</ul>
</div>
</div>
</div>
<divclass="espacioRow"></div>
<navclass=" footer " >
<divclass="container">
<ulclass="list-unstyled col-xs-6 navbar-left">
<li><ahref="#"><imgsrc="img/logo.png" alt=""></a></li>
<li><ahref="#">Matías Blayer</a></li>
</ul>
<ulclass=" list-unstyledcol-xs-6 navbar-right">
<li><ahref="https://github.com/pelufito" target="_blank" ><spanclass="ion-social-github redes"></span></a></li>
<li><ahref="https://twitter.com/m_blayer" target="_blank"><spanclass="ion-social-twitter redes"></a></span></li>
<li><ahref="https://www.instagram.com/pelufito/" target="_blank"><spanclass="ion-social-instagram redes"></span></a></li>
</ul>
</div>
</nav>
</body>
<scripttype="text/javascript">
$(function(){
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</html>