-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
130 changed files
with
1,721 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,40 @@ | ||
|
||
# CHANGELOG | ||
|
||
*1.1.0* (2018-08-10) | ||
- implement Taggable breadcrumb | ||
- implement headlines | ||
- refactor homepage and full-width teaser usage | ||
- use object-fit property for fullwidth teasers | ||
- decrease fullwidth teaser content width | ||
- add fallback grey background for highlights without image | ||
- implement card-deck component | ||
- Create the following pages: | ||
- Association homepage | ||
- Association list | ||
- Basic page | ||
- Blog homepage | ||
- Campus | ||
- Event detail | ||
- Event homepage | ||
- Event list | ||
- Facultés | ||
- Lab homepage | ||
- News detail | ||
- News homepage | ||
- People detail | ||
- People list | ||
- Programs | ||
- Research | ||
- implement nice focus for collapse component | ||
- add close icon for browse button | ||
- document the layout system via a page (Layout demo) | ||
- fix missing tablesaw css | ||
- implement card deck special design with 1 or 2 cards | ||
- visual improvement to hero component | ||
- fine tunng main nav visual | ||
- allow iframe and embed to be full width in container-grid | ||
- implement left highlight | ||
|
||
*1.0.0* (2018-07-25) | ||
- First release with all the current state |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.0 | ||
1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<button id="nav-toggle" class="nav-toggle btn btn-secondary"> | ||
{% include '@atoms/icon/icon.twig' with { icon: 'icon-browse' } %} | ||
{% include '@atoms/icon/icon.twig' with { icon: 'icon-close' } %} | ||
Browse | ||
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
{% set cover_path = cover_path|default("https://via.placeholder.com/") %} | ||
<picture> | ||
<source | ||
media="(min-width: 1140px)" | ||
srcset="https://via.placeholder.com/1920x1080.jpg 1x,https://via.placeholder.com/2880x1620.jpg 2x"> | ||
srcset="{{cover_path}}1920x1080.jpg 1x,{{cover_path}}2880x1620.jpg 2x"> | ||
<source | ||
media="(min-width: 960px)" | ||
srcset="https://via.placeholder.com/1140x641.jpg 1x,https://via.placeholder.com/2280x1283.jpg 2x"> | ||
srcset="{{cover_path}}1140x641.jpg 1x,{{cover_path}}2280x1283.jpg 2x"> | ||
<source | ||
media="(min-width: 720px)" | ||
srcset="https://via.placeholder.com/960x540.jpg 1x,https://via.placeholder.com/1920x1080.jpg 2x"> | ||
srcset="{{cover_path}}960x540.jpg 1x,{{cover_path}}1920x1080.jpg 2x"> | ||
<source | ||
media="(min-width: 541px)" | ||
srcset="https://via.placeholder.com/720x405.jpg 1x,https://via.placeholder.com/1440x810.jpg 2x"> | ||
srcset="{{cover_path}}720x405.jpg 1x,{{cover_path}}1440x810.jpg 2x"> | ||
<source | ||
media="(max-width: 540px)" | ||
srcset="https://via.placeholder.com/540x304.jpg 1x,https://via.placeholder.com/1080x608.jpg 2x"> | ||
<img src="https://via.placeholder.com/1920x1080.jpg" class="img-fluid" alt="Cover description"> | ||
srcset="{{cover_path}}540x304.jpg 1x,{{cover_path}}1080x608.jpg 2x"> | ||
<img src="{{cover_path}}1920x1080.jpg" class="img-fluid" alt="Cover description"> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
assets/components/content-types/event/event-highlight-listing.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<div class="row align-items-center"> | ||
<div class="col-md-6"> | ||
<h2>Les prochains événements</h2> | ||
</div> | ||
<div class="col-md-6 text-right"> | ||
<a href="#">Voir tous les événements de la faculté</a> | ||
</div> | ||
</div> | ||
<div class="row mt-2"> | ||
<div class="col-md-6"> | ||
{% include '@content-types/event/event-highlight.twig' %} | ||
</div> | ||
<div class="col-md-6"> | ||
{% include '@content-types/event/event-listing.twig' %} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<div class="list-group"> | ||
{% for i in 1..5 %} | ||
<a href="#" class="list-group-item list-group-item-gray list-group-teaser link-trapeze-vertical"> | ||
<div class="list-group-teaser-container"> | ||
<div class="list-group-teaser-thumbnail"> | ||
{% include '@atoms/picture/picture.twig' with {'variant':'news-thumb'} %} | ||
</div> | ||
<div class="list-group-teaser-content"> | ||
<p class="h5">Startup Acceleration Workshops</p> | ||
<div class="card-info mt-0"> | ||
{% block date %} | ||
<span class="card-info-date">10.01.2018</span> | ||
<span>13:00</span> | ||
<span>17:30</span> | ||
{% endblock %} | ||
<p> | ||
{% block info %}Lieu : <b>ArtLab EPFL</b><br> Catégorie : <b>Événements culturel</b><br>{% endblock %} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</a> | ||
{% endfor %} | ||
|
||
{% if bottomlink %} | ||
<a href="#" class="list-group-teaser-more"> | ||
Afficher plus d'événements | ||
</a> | ||
{% endif %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<h2 class="mt-5 mb-4">The last news</h2> | ||
<div class="row"> | ||
{% for i in 1..2 %} | ||
<div class="col-md-6"> | ||
{% include '@content-types/news/news-basic-teaser.twig' %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<p class="text-center"> | ||
<a class="link-pretty" href="#">See all news</a> | ||
</p> |
Oops, something went wrong.