Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/static/img/partners/4paradigm.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/anr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/anr2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/barcelona.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/chalearn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/cnrs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/eit_health.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/google.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/idf.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/inria.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/lisn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/microsoft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/paris-saclay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/img/partners/stanford.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/static/stylus/home.styl
Original file line number Diff line number Diff line change
Expand Up @@ -325,3 +325,12 @@ body
100% {
transform: rotate(360deg)
}


.partner-img
width 140px
height 140px
object-fit contain

#partners-row1
padding-bottom 0px
52 changes: 52 additions & 0 deletions src/templates/pages/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,58 @@ <h3 class="news-heading-title">{{post.title}}</h3>
</div>
</div>

<!-- Partners Section -->
<div class="segment-container ui segment full-width">
<div class="ui header">Partners</div>
<div class="container-content" id="partners-row1">
<a href="https://www.universite-paris-saclay.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/paris-saclay.png" %}">
</a>
<a href="https://www.microsoft.com/" target="_blank">
<img class="partner-img" src="{% static "img/partners/microsoft.png" %}">
</a>
<a href="http://www.chalearn.org/" target="_blank">
<img class="partner-img" src="{% static "img/partners/chalearn.png" %}">
</a>
<a href="http://www.ub.edu/web/ub/en/" target="_blank">
<img class="partner-img" src="{% static "img/partners/barcelona.png" %}">
</a>
<a href="https://www.stanford.edu/" target="_blank">
<img class="partner-img" src="{% static "img/partners/stanford.png" %}">
</a>
<a href="https://www.eithealth.eu/" target="_blank">
<img class="partner-img" src="{% static "img/partners/eit_health.jpg" %}">
</a>
<a href="https://www.inria.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/inria.png" %}">
</a>
</div>
<div class="container-content">
<a href="https://www.lisn.upsaclay.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/lisn.png" %}">
</a>
<a href="https://www.google.com/" target="_blank">
<img class="partner-img" src="{% static "img/partners/google.jpg" %}">
</a>
<a href="https://en.4paradigm.com/" target="_blank">
<img class="partner-img" src="{% static "img/partners/4paradigm.jpg" %}">
</a>
<a href="https://www.cnrs.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/cnrs.png" %}">
</a>
<a href="https://anr.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/anr.png" %}">
</a>
<a href="https://anr.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/anr2.jpg" %}">
</a>
<a href="https://www.iledefrance.fr/" target="_blank">
<img class="partner-img" src="{% static "img/partners/idf.jpg" %}">
</a>
</div>

</div>

</div>
{% endblock %}

Expand Down