From 94cffc67373b9ba71323400482332308698204e7 Mon Sep 17 00:00:00 2001 From: Aditya Sirish Date: Fri, 11 Jun 2021 13:59:24 -0400 Subject: [PATCH 1/8] Multiple changes: * Split Uptane into paragraphs * Support multi-para descriptions for projects Signed-off-by: Aditya Sirish --- _data/data.yml | 11 ++++++++--- projects.html | 10 +++++++--- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/_data/data.yml b/_data/data.yml index d9efe6b..481bd44 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -821,15 +821,20 @@ projects: image: "img/projects/uptane_diagram.png" status: *adopted site: "https://uptane.github.io/" - description: "Cars today use a truly enormous + description: + - "Cars today use a truly enormous amount of software, and, like any software, it contains bugs. Uptane provides a mechanism to securely distribute software updates to cars. The framework can counter a comprehensive array of security attacks, and is resilient to partial compromises, while addressing automotive specific vulnerabilities and - limitations. It was named one of + limitations." + - "Uptane was named one of the Top - Security Innovations of 2017 by Popular Science Magazine. Uptane is a Joint Development Foundation project of the Linux Foundation, operating under the formal title of Joint Development Foundation Projects, LLC, Uptane Series." + Security Innovations of 2017 by Popular Science Magazine. + Uptane is a Joint Development Foundation + project of the Linux Foundation, + operating under the formal title of Joint Development Foundation Projects, LLC, Uptane Series." products: "Uptane has already been adopted by multiple auto makers. Uptane has been diff --git a/projects.html b/projects.html index 866cb1b..f534474 100644 --- a/projects.html +++ b/projects.html @@ -58,9 +58,13 @@

{{ project.name | size_upcase }}

{% endif %} -

- {{ project.description }} -

+
+ {% for desc in project.description %} +

+ {{ desc }} +

+ {% endfor %} +