Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopernpruner committed Sep 6, 2023
1 parent ba80a75 commit fb830b8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title>{{ page.title }} - {{ site.title }}</title>
{%- endif %}
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/custom.css?v=3">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/custom.css?v=4">
<link rel="shortcut icon" type="image/png"
{% if site.favicon %} href="{{ site.favicon | prepend: site.baseurl }}" {% else %} href="{{ site.baseurl }}/favicon.png" {% endif %} />
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
Expand Down
5 changes: 2 additions & 3 deletions _includes/list-people.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,13 +221,12 @@
{% if details contains "picture" %}
{% assign staticImageName = person.id | append: ".jpg" %}
{% assign staticImageNameNoAccents = staticImageName | replace: 'à', 'a' | replace: 'è', 'e' | replace: 'ì', 'i' | replace: 'ò', 'o' | replace: 'ù', 'u' %}
{% assign staticImageURL = "/assets/areas/people/" | append: staticImageNameNoAccents %}
{% assign staticImage = site.static_files | where_exp: "file", "file.path == staticImageURL" %}
{% assign staticImage = site.static_files | where_exp: "file", "file.name == staticImageNameNoAccents" %}

{% if person.image %}
{% assign personImage = person.image %}
{% elsif staticImage.size == 1 %}
{% assign personImage = staticImageURL %}
{% assign personImage = staticImage[0].path %}
{% elsif person.usernameFBK %}
{% capture personImage %}https://my.fbk.eu/fbk-api/v2/picture/{{ person.usernameFBK }}?w=200{% endcapture %}
{% elsif person.email %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/parentFBK.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<section class="parentFBK">
<div class="header container">
<div class="loghi">
<a href="http://www.fbk.eu" title="FBK">
<a href="http://www.fbk.eu/en" title="FBK">
<img src="/assets/images/logos/FBK_white_horizontal.png" alt="FBK" class="logo">
</a>
<img src="/assets/images/logos/ST_acronym_white.png" alt="ST" class="logo right">
Expand Down
5 changes: 2 additions & 3 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@

{% assign staticImageName = page.person | append: ".jpg" %}
{% assign staticImageNameNoAccents = staticImageName | replace: 'à', 'a' | replace: 'è', 'e' | replace: 'ì', 'i' | replace: 'ò', 'o' | replace: 'ù', 'u' %}
{% assign staticImageURL = "/assets/areas/people/" | append: staticImageNameNoAccents %}
{% assign staticImage = site.static_files | where_exp: "file", "file.path == staticImageURL" %}
{% assign staticImage = site.static_files | where_exp: "file", "file.name == staticImageNameNoAccents" %}

{% if person.image %}
{% assign personImage = person.image %}
{% elsif staticImage.size == 1 %}
{% assign personImage = staticImageURL %}
{% assign personImage = staticImage[0].path %}
{% elsif person.usernameFBK %}
{% capture personImage %}https://my.fbk.eu/fbk-api/v2/picture/{{ person.usernameFBK }}?w=300{% endcapture %}
{% elsif person.email %}
Expand Down
4 changes: 2 additions & 2 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,11 @@ html {
}

.content h2 {
font-size: 1.4em;
font-size: 1.2em;
}

.content h3 {
font-size: 1.3em;
font-size: 1em;
}

/* TOC new */
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ heroImageRight: /assets/images/logos/CS_white.png
---

# Who we are
In line with the mission of [Fondazione Bruno Kessler](https://www.fbk.eu) (FBK), which aims to achieve scientific research of excellence and have an impact on society, the Security & Trust Research Unit of the [Cybersecurity center](https://www.fbk.eu/it/cybersecurity/) of FBK develops cutting-edge security solutions in the following areas:
In line with the mission of [Fondazione Bruno Kessler](https://www.fbk.eu/en) (FBK), which aims to achieve scientific research of excellence and have an impact on society, the Security & Trust Research Unit of the [Center for Cybersecurity](https://www.fbk.eu/en/cybersecurity/) of FBK develops cutting-edge security solutions in the following areas:

- Identity and Access Management (e.g., on-boarding, single and multi-factor authentication, access delegation, authorization and access control)
- Legal compliance (e.g., privacy and e-payment provisions)
Expand Down

0 comments on commit fb830b8

Please sign in to comment.