-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
dd9f377
commit 089d352
Showing
7 changed files
with
120 additions
and
10 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
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
layout: default | ||
--- | ||
<div class="d-flex justify-content-center align-items-center px-1 px-lg-5 mt-3 mt-lg-5 "> | ||
<h1 class="text-capitalize text-center">{{ page.title }}</h1> | ||
</div> | ||
|
||
<!-- now we loop over the authors of the paper (page.authors) and display them with the corresponding superscript --> | ||
<div class="d-flex flex-wrap justify-content-center align-items-center px-1 px-lg-5 mt-2 mt-lg-3"> | ||
{% for author in page.authors %} | ||
{% if author.url %} | ||
<a href="{{ author.url }}" class="text-decoration-none me-3 fs-5">{{ author.name }}<sup>{{ author.superscript }}</sup></a> | ||
{% else %} | ||
<span class="me-3 fs-5 amr-color">{{ author.name }}<sup>{{ author.superscript }}</sup></span> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
<!-- Now we loop over the affiliations or whatever the superscript means --> | ||
<div class="d-flex flex-wrap justify-content-center align-items-center px-1 px-lg-5 mt-2 mt-lg-3"> | ||
{% for affiliation in page.affiliations %} | ||
{% if affiliation.url %} | ||
<a href="{{ affiliation.url }}" class="text-body-secondary text-decoration-none me-3 fs-6"><sup>{{ affiliation.superscript }}</sup>{{ affiliation.name }}</a> | ||
{% else %} | ||
<span class="text-body-secondary me-3 fs-6"><sup>{{ affiliation.superscript }}</sup>{{ affiliation.name }}</span> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
|
||
<!-- now we loop over the external links and display them each in a rounded dark button with the corresponding icon in front --> | ||
<div class="d-flex flex-wrap justify-content-center align-items-center px-1 px-lg-5 mt-2 mt-lg-3"> | ||
{% for link in page.links %} | ||
<a href="{{ link.url }}" class="btn btn-dark rounded-pill me-3 mb-2"> | ||
{% if link.icon %} | ||
<i class="bi {{ link.icon }}"> </i> | ||
{% endif %} | ||
{{ link.name }} | ||
</a> | ||
{% endfor %} | ||
</div> | ||
|
||
|
||
<div class="paper-body mt-5 px-0 px-lg-5"> | ||
{{page.content}} | ||
|
||
<hr> | ||
|
||
<div class="d-flex justify-content-center mt-5"> | ||
<a href="{{ '/msc_projects_finished' | relative_url }}" class="btn btn-dark rounded-pill"><i class="bi bi-arrow-left"></i> Back to Master Thesis Projects</a> | ||
</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
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,46 @@ | ||
--- | ||
title: "Paper Websites" | ||
permalink: /paper_websites/ | ||
--- | ||
|
||
<div> | ||
<p> | ||
This page contains a list of some of the websites of the papers published by the group. The list is sorted by year, and only contains the | ||
papers that have a website using the group's website template. Note that the list is not complete, as it is up to the authors to create a | ||
website for their paper adn they may choose to host it themselves. For a more complete list, check directly the <a href="{% link publications.html %}">Publications</a>. | ||
</p> | ||
</div> | ||
|
||
{% assign papers_sorted = site.paper_websites | sort: 'release_date' | reverse %} | ||
|
||
<div class="msc_project-container" id="msc_project-container"> | ||
|
||
<!-- Create year titles for each distinct year of the master projects --> | ||
{% for paper in papers_sorted %} | ||
{% assign currDate = paper.release_date | date: "%Y" %} | ||
{% if currDate != date %} | ||
<h3 class="archive-year border-bottom">{{ currDate }}</h3> | ||
{% assign date = currDate %} | ||
{% endif %} | ||
|
||
<!-- Creating a counter in case you need to create unique dropdowns or buttons --> | ||
{% assign counter = counter | minus: 1 %} | ||
|
||
<!-- Add the msc_project item. id is unique --> | ||
<div class="paper_website-item"> | ||
<!-- <strong class="d-inline-block mb-2 text-success-emphasis">Design</strong> --> | ||
<h3 class="mb-1 fs-5"> | ||
<a href="{{ paper.url | relative_url }}">{{ paper.title }}</a> | ||
</h3> | ||
<div class="mb-1 text-body-secondary small"> | ||
<!-- add names of authors --> | ||
{% for person in paper.authors %} | ||
{{ person.name }} {% if forloop.last == false %} , {% endif %} | ||
{% endfor %} | ||
| {{ paper.release_date | date: "%B %Y" }} | ||
</div> | ||
</div> | ||
|
||
{% endfor %} | ||
|
||
</div> |