mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 12:41:23 +01:00
cambio config para poner fotos y añado logos a images_datalab
This commit is contained in:
parent
ee5acb54ff
commit
b071ad3262
5 changed files with 6 additions and 12 deletions
10
_config.yml
10
_config.yml
|
@ -54,13 +54,7 @@ rightNavigationButtons:
|
||||||
|
|
||||||
# Home Block
|
# Home Block
|
||||||
homeImage: "medialab_auditorio3_flickr.jpg"
|
homeImage: "medialab_auditorio3_flickr.jpg"
|
||||||
homeTitle: "Premios de Datos Abiertos de Madrid 2017"
|
|
||||||
eventDate: "Octubre - Diciembre, 2017"
|
|
||||||
#typeoutFallback: "Season"
|
|
||||||
homeTitle: "Premios de Datos Abiertos de Madrid <typeout> 2017"
|
|
||||||
eventDate: "September - November, 2014"
|
|
||||||
# Hero Block
|
# Hero Block
|
||||||
heroImage: "medialab_auditorio3_flickr.jpg"
|
|
||||||
heroTitle: "DataMad <typeout> 2017"
|
heroTitle: "DataMad <typeout> 2017"
|
||||||
eventDate: "Octubre - Diciembre, 2017"
|
eventDate: "Octubre - Diciembre, 2017"
|
||||||
typeoutTextValues: '"", "Madrid", "Datos abiertos", "Periodismo de datos", "Datatón"'
|
typeoutTextValues: '"", "Madrid", "Datos abiertos", "Periodismo de datos", "Datatón"'
|
||||||
|
@ -116,7 +110,7 @@ venueSmallImage1: "medialab_exterior2_architizer.jpg"
|
||||||
venueSmallImage2: "medialab_plantabaja2_flickr.jpg"
|
venueSmallImage2: "medialab_plantabaja2_flickr.jpg"
|
||||||
venueSmallImage3: "medialab_ropa_flickr.jpg"
|
venueSmallImage3: "medialab_ropa_flickr.jpg"
|
||||||
venueTitle: "Medialab-Prado"
|
venueTitle: "Medialab-Prado"
|
||||||
venueFeatures: ["Medialab-Prado es un laboratorio ciudadano de producción, investigación y difusión de proyectos culturales perteneciente al Área de Gobierno de Cultura y Deportes del Ayuntamiento de Madrid"]
|
venueFeatures: ["Medialab-Prado es un laboratorio ciudadano de producción, investigación y difusión de proyectos culturales"]
|
||||||
|
|
||||||
# Tweets Feed Block
|
# Tweets Feed Block
|
||||||
tweetsFeedImage: "medialab_ventana2_flickr.jpg"
|
tweetsFeedImage: "medialab_ventana2_flickr.jpg"
|
||||||
|
@ -231,7 +225,7 @@ hackathonRows:
|
||||||
- {title: "Mobilomics", image: "hackathon-2.png", details: "Polymer is a library that introduces web components. Web components are small elements on a page that can be extended and incorporated in web applications. The result is an increase in productivity.<br><br>We used Polymer mainly to explore the concept of web components. The transition of Google to material design was also a factor.While the library was never touched by the team, it still was painless to wireframe the application. Later on we incorporated some Polymer components in the design. We didn’t use the full potential of Polymer because of the limited time."}
|
- {title: "Mobilomics", image: "hackathon-2.png", details: "Polymer is a library that introduces web components. Web components are small elements on a page that can be extended and incorporated in web applications. The result is an increase in productivity.<br><br>We used Polymer mainly to explore the concept of web components. The transition of Google to material design was also a factor.While the library was never touched by the team, it still was painless to wireframe the application. Later on we incorporated some Polymer components in the design. We didn’t use the full potential of Polymer because of the limited time."}
|
||||||
|
|
||||||
# Hackathon Judges Block
|
# Hackathon Judges Block
|
||||||
judgesImage: "judges.jpg"
|
judgesImage: "medialab_gentecurrando4_flickr.jpg"
|
||||||
judgesTitle: "Jurado"
|
judgesTitle: "Jurado"
|
||||||
|
|
||||||
# Hackathon Prizes Block
|
# Hackathon Prizes Block
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="col-lg-10 col-lg-offset-1">
|
<div class="col-lg-10 col-lg-offset-1">
|
||||||
<h3>{{ site.judgesTitle }}</h3>
|
<h3>{{ site.judgesTitle }}</h3>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{% assign animationDelay = 0 %} {% for judge in site.data.judges %}
|
{% assign animationDelay = 0 %} {% for judge in site.data.judges %}
|
||||||
{% assign colWidth = 12 | divided_by: forloop.length %}
|
{% assign colWidth = 12 | divided_by: forloop.length %}
|
||||||
<div class="judge col-md-{{ colWidth }} col-xs-6 animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
|
<div class="judge col-md-{{ colWidth }} col-xs-6 animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
|
||||||
<div class="flow-img img-circle judge-img" style="background-image: url({{ site.baseurl }}/img/people/{{ judge.thumbnailUrl }})"></div>
|
<div class="flow-img img-circle judge-img" style="background-image: url({{ site.baseurl }}/img/people/{{ judge.thumbnailUrl }})"></div>
|
||||||
|
@ -13,11 +13,11 @@
|
||||||
<span class="company">{{ judge.company }}</span>
|
<span class="company">{{ judge.company }}</span>
|
||||||
<span class="title">{{ judge.title }}</span>
|
<span class="title">{{ judge.title }}</span>
|
||||||
</div>
|
</div>
|
||||||
{% assign animationDelay = animationDelay | plus:500 %}
|
{% assign animationDelay = animationDelay | plus:500 %}
|
||||||
{% assign check = forloop.index | modulo:2 %}
|
{% assign check = forloop.index | modulo:2 %}
|
||||||
{% if check == 0 %}
|
{% if check == 0 %}
|
||||||
<div class="clearfix visible-xs"></div>
|
<div class="clearfix visible-xs"></div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Loading…
Reference in a new issue