Skip to content

Commit 32121ff

Browse files
authored
Merge pull request #1 from SevillaDevelopers/master
Bringing fork up to date
2 parents 31d46d6 + 22865fc commit 32121ff

17 files changed

+203
-148
lines changed

README.md

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
# Sevilla Developers
22

3-
Landing page repository
3+
Este es el proyecto para Github.io del grupo [Sevilla Developers](https://www.facebook.com/groups/sevilladevelopers)
4+
5+
Para empezar a colaborar, **TIEMPO TOTAL: 10 min**, la manera más inmediata es:
6+
7+
* forkear el [repositorio](https://github.com/SevillaDevelopers/sevilladevelopers.github.io)
8+
* seguir [la guía de Github](https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/)
9+
* tl;dr:
10+
* Instalar Ruby
11+
* Git Bash en tu carpeta del repositorio:
12+
13+
> gem install bundler
14+
> bundle install
15+
> bundle exec jekyll serve
16+
* Abre el navegador en [http://localhost:4000](http://localhost:4000)
17+
18+
* hacer tus mandangas
19+
* commit
20+
* Pull Request
21+
22+
23+
24+
## License
425

5-
License
6-
-------
726

827
This project is released under the [MIT license](LICENSE).

_includes/footer.html

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<footer class="page-footer">
2-
<div class="container">
3-
<div class="row">
4-
<div class="col l4 s12">
5-
<p><strong>Únete al grupo</strong> simplemente enviando una petición al <a href="https://www.facebook.com/groups/sevilladevelopers/">grupo de Facebook</a>.</p>
6-
</div>
7-
<div class="col l4 s12">
8-
<p><strong>Diviértete</strong> y respeta a los demás miembros del grupo.</p>
9-
</div>
10-
<div class="col l4 s12">
11-
<p><strong>Colabora</strong> haciendo Fork a <a href="https://github.com/SevillaDevelopers/sevilladevelopers.github.io">este repositorio</a>, haz los cambios necesarios y envía Pull Request.</p>
12-
</div>
13-
</div>
2+
<div class="container">
3+
<div class="row">
4+
<div class="col l4 s12">
5+
<p><strong>Únete al grupo</strong> simplemente enviando una petición al <a href="https://www.facebook.com/groups/sevilladevelopers/">grupo de Facebook</a>.</p>
6+
</div>
7+
<div class="col l4 s12">
8+
<p><strong>Diviértete</strong> y respeta a los demás miembros del grupo. Cumplimos este <a href="http://berlincodeofconduct.org/es/">Código de Conducta</a>.</p>
9+
</div>
10+
<div class="col l4 s12">
11+
<p><strong>Colabora</strong> haciendo Fork a <a href="https://github.com/SevillaDevelopers/sevilladevelopers.github.io">este repositorio</a>, haz los cambios necesarios y envía Pull Request.</p>
12+
</div>
1413
</div>
15-
<div class="footer-copyright">
16-
<div class="container">
17-
Copyright © {{ site.time | date: '%Y' }} Sevilla Developers User Group | All rights reserved. Made with <i class="tiny material-icons">favorite</i> and vitamine K.
18-
</div>
14+
</div>
15+
<div class="footer-copyright">
16+
<div class="container">
17+
Copyright © {{ site.time | date: '%Y' }} Sevilla Developers User Group | All rights reserved. Made with <i class="tiny material-icons">favorite</i> and vitamine K.
1918
</div>
19+
</div>
2020
</footer>

_includes/head.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
8+
<!-- Meta information -->
9+
<meta name="description" content="{{ site.description }}">
10+
<meta name="viewport" content="width=device-width, initial-scale=1">
11+
12+
<!-- Favicon -->
13+
<link rel="icon" type="image/png" href="{{ '/assets/favicon-32x32.png' | prepend: site.baseurl }}" sizes="32x32" />
14+
<link rel="icon" type="image/png" href="{{ '/assets/favicon-16x16.png' | prepend: site.baseurl }}" sizes="16x16" />
15+
<link rel="icon" type="image/x-icon" href="{{ '/assets/favicon.png' | prepend: site.baseurl }}">
16+
17+
<!-- Styles -->
18+
<link rel="stylesheet" href="{{ '/assets/css/styles.css' | prepend: site.baseurl }}">
19+
</head>

_includes/nav.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<header>
2+
<section class="nav">
3+
<div class="container">
4+
<div class="row">
5+
<div class="col l2 s12">
6+
<img src="{{ '/assets/img/sevilla-developers-icon.png'| prepend: site.baseurl }}" alt="" width="80px">
7+
</div>
8+
<div class="col l10 s12">
9+
<ul>
10+
<li><a href="#qué-es-sevilladevelopers">¿Qué es SevillaDevelopers?</a></li>
11+
<li><a href="#cómo-lo-hacemos">¿Cómo lo hacemos?</a></li>
12+
<li><a href="#dónde-encontrarnos">¿Dónde encontrarnos?</a></li>
13+
<li><a href="#cómo-colaborar">¿Cómo colaborar?</a></li>
14+
<li><a href="#cosas-que-hace-la-gente-en-sevilla">¿Qué hacemos?</a></li>
15+
</ul>
16+
</div>
17+
</div>
18+
</div>
19+
</section>
20+
21+
<section id="banner">
22+
<div class="index-banner">
23+
<div class="section no-pad-bot">
24+
<div class="container">
25+
<img src="{{ '/assets/img/banner.png' | prepend: site.baseurl }}" alt="">
26+
<h1 class="header center">{{ site.title }}</h1>
27+
</div>
28+
</div>
29+
</div>
30+
</section>
31+
</header>

_layouts/default.html

+4-55
Original file line numberDiff line numberDiff line change
@@ -3,61 +3,10 @@
33
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
44
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
55
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
6-
<head>
7-
<meta charset="utf-8">
8-
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
9-
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
{% include head.html %}
107

11-
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
12-
13-
<!-- Meta information -->
14-
<meta name="description" content="{{ site.description }}">
15-
<meta name="viewport" content="width=device-width, initial-scale=1">
16-
17-
<!-- Favicon -->
18-
<link rel="icon" type="image/png" href="{{ '/assets/favicon-32x32.png' | prepend: site.baseurl }}" sizes="32x32" />
19-
<link rel="icon" type="image/png" href="{{ '/assets/favicon-16x16.png' | prepend: site.baseurl }}" sizes="16x16" />
20-
<link rel="icon" type="image/x-icon" href="{{ '/assets/favicon.png' | prepend: site.baseurl }}">
21-
22-
<!-- Styles -->
23-
<link rel="stylesheet" href="{{ '/assets/css/styles.css' | prepend: site.baseurl }}">
24-
25-
</head>
26-
<body id="top">
27-
<header>
28-
<section class="nav">
29-
<div class="container">
30-
<div class="row">
31-
<div class="col l2 s12">
32-
<img src="{{ '/assets/img/sevilla-developers-icon.png'}}" alt="" width="80px">
33-
</div>
34-
<div class="col l10 s12">
35-
<ul>
36-
<li><a href="#qué-es-sevilladevelopers">¿Qué es SevillaDevelopers?</a></li>
37-
<li><a href="#cómo-lo-hacemos">¿Cómo lo hacemos?</a></li>
38-
<li><a href="#dónde-encontrarnos">¿Dónde encontrarnos?</a></li>
39-
<li><a href="#cómo-colaborar">¿Cómo colaborar?</a></li>
40-
<li><a href="#cosas-que-hace-la-gente-en-sevilla">¿Qué hacemos?</a></li>
41-
</ul>
42-
</div>
43-
</div>
44-
</div>
45-
</section>
46-
47-
<section id="banner">
48-
<div class="index-banner">
49-
<div class="section no-pad-bot">
50-
<div class="container">
51-
52-
<img src="{{ '/assets/img/sevilla-developers_3.png' | prepend: site.baseurl }}" alt="">
53-
54-
<h1 class="header center">{{ site.title }}</h1>
55-
56-
</div>
57-
</div>
58-
</div>
59-
</section>
60-
</header>
8+
<body id="top">
9+
{% include nav.html %}
6110

6211
<section id="features">
6312
<div class="container">
@@ -70,5 +19,5 @@ <h1 class="header center">{{ site.title }}</h1>
7019
{% include footer.html %}
7120
{% include ga.html %}
7221

73-
</body>
22+
</body>
7423
</html>

assets/css/styles.scss

+74-56
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,131 @@
11
---
22
# Only the main Sass file needs front matter (the dashes are enough)
33
---
4-
/*
5-
Theme Name: Symfony Skeleton
6-
Description: Skeleton is the simplest way to use Symfony framework with the basics bundles installed
7-
Version: 1.0
8-
Author: Miguel Ángel Martin @miguelbemartin
9-
Author URI: http://www.miguelangelmartin.me
10-
*/
114

125
@import "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css";
136
@import "https://fonts.googleapis.com/icon?family=Material+Icons";
14-
@import "https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed:400,700";
7+
@import "https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:300,500";
158

16-
body{
9+
10+
html {
11+
color: #222222;
12+
font-size: 16px;
1713
font-family: "Roboto", sans-serif;
18-
font-weight: 100;
19-
h1, h2, h3, h4{
20-
font-weight: 900;
14+
font-weight: 300;
15+
16+
@media only screen and (min-width: 1200px) {
17+
font-size: 18px;
18+
}
19+
}
20+
21+
body{
22+
h1 {
23+
@media (max-width: 600px) { font-size: 2.3em; }
24+
@media (max-width: 740px) { font-size: 2.5em; }
25+
26+
}
27+
28+
h2, h3, h4{
29+
font-family: "Roboto Condensed", sans-serif;
30+
font-weight: 700;
2131
color: #444;
2232
}
23-
h2{
24-
font-family: "Roboto Condensed", sans-serif;
25-
font-weight: 700;
26-
font-size: 35px;
33+
34+
h2 {
35+
font-size: 35px;
2736
}
28-
h3{
29-
font-family: "Roboto Condensed", sans-serif;
30-
font-weight: 700;
31-
font-size: 25px;
37+
38+
h3 {
39+
font-size: 25px;
3240
}
33-
ul, ul:not(.browser-default), ul li, ul:not(.browser-default) li{
41+
42+
ul, ul:not(.browser-default), ul li, ul:not(.browser-default) li {
3443
list-style: disc;
3544
padding-left: 10px;
3645
margin-left: 5px;
3746
}
3847

39-
header{
40-
background-color: #213256;
41-
background-image: url(../img/header-background.png);
48+
header {
4249
@media (max-width: 600px) { text-align: center; }
43-
.nav{
50+
51+
background-color: #213256;
52+
53+
.nav {
4454
padding-top: 30px;
45-
ul{
46-
list-style: none;
55+
56+
ul {
57+
display: flex;
4758
float: right;
48-
li{
49-
list-style: none;
59+
flex-flow: row wrap;
60+
justify-content: center;
61+
list-style: none;
62+
margin-left: 0px;
63+
padding-left: 0px;
64+
white-space: nowrap;
65+
66+
li {
5067
float: left;
68+
list-style: none;
5169
margin-left: 15px;
52-
a{
70+
padding-left: 0px;
71+
72+
a {
73+
color:#FFFFFF;
5374
font-family: "Roboto Condensed", sans-serif;
5475
font-weight: 700;
55-
color:#FFFFFF;
5676
}
5777
}
5878
}
5979
}
6080

61-
#banner{
81+
#banner {
6282
.index-banner{
6383
text-align: center;
6484
padding-bottom: 50px;
6585
img{
66-
width: 150px;
86+
width: 100%;
6787
margin-top: 30px;
6888
}
6989
h1{
7090
font-size: 39px;
7191
line-height: 50px;
72-
font-weight: 100;
92+
font-weight: 200;
7393
margin-top: 20px;;
7494
color: #FFFFFF;
7595
strong{
76-
font-weight: 900;
96+
font-weight: 500;
7797
}
7898
}
7999
}
80100
}
81101
}
82102

83-
84-
a.btn{
85-
background-color: #3DB884;
86-
&:hover{
87-
background-color: #3FC48C;
88-
}
103+
#features {
104+
margin-bottom: 4em;
89105
}
90106

107+
footer.page-footer {
108+
background-color: #213256;
109+
color: #fff;
110+
91111

92-
#login{
93-
padding-top: 150px;
94-
min-height: 500px;
95-
input[type="submit"]{
96-
background-color: #3ECF8E;
112+
a {
113+
color: #fff;
114+
font-weight: 300;
115+
text-decoration: underline;
97116
}
98-
}
99-
footer{
100-
color: #fff;
101-
}
102-
.page-footer{
103-
background-color: #3a5795;
104-
}
105-
.footer-copyright{
106-
background-color: #3a5795;
117+
118+
.footer-copyright {
107119
height: 80px;
108120
line-height: 80px;
109-
a{
121+
@media (max-width: 600px) {
122+
height: 2em;
123+
line-height: 2em;
124+
}
125+
126+
a {
110127
color: #fff;
111128
}
129+
}
112130
}
113131
}

assets/favicon-16x16.png

-806 Bytes
Loading

assets/favicon-32x32.png

-3.09 KB
Loading

assets/favicon.png

-591 KB
Loading

assets/img/banner.png

40.9 KB
Loading

assets/img/favicon.png

-591 KB
Loading

assets/img/header-background.png

-5.69 KB
Binary file not shown.
-591 KB
Loading

assets/img/sevilla-developers.png

-17.1 KB
Binary file not shown.

assets/img/sevilla-developers_2.png

-12.6 KB
Binary file not shown.

assets/img/sevilla-developers_3.png

-94.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)