diff --git a/projects/website/_src/_data/navigation.yml b/projects/website/_src/_data/navigation.yml index 469f82f9..f864b871 100644 --- a/projects/website/_src/_data/navigation.yml +++ b/projects/website/_src/_data/navigation.yml @@ -6,5 +6,7 @@ link: / - text: blog link: /blog/ +- text: publications + link: /publications/ - text: cv link: /cv/ diff --git a/projects/website/_src/_data/publications.yml b/projects/website/_src/_data/publications.yml new file mode 100644 index 00000000..709b2963 --- /dev/null +++ b/projects/website/_src/_data/publications.yml @@ -0,0 +1,10 @@ +- title: Is my Dependency Sustainable? A Systematic Mapping on Open Source Software Sustainability + doi: 10.1145/3786152.3788587 + file: /assets/docs/fontes-design-2026.pdf + date: 2026-04-13 + venue: 3rd International Workshop on Designing Software (Designing '26) +- title: "Open Source Software Ecosystem for Cloud Observability: An Overview and Trends" + doi: 10.1145/3786163.3788453 + file: /assets/docs/fontes-sesos-2026.pdf + date: 2026-04-12 + venue: 14th International Workshop on Software Engineering for Systems-of-Systems and Software Ecosystems (SESoS '26) diff --git a/projects/website/_src/_sass/main.scss b/projects/website/_src/_sass/main.scss index ece9a70b..7ced7485 100644 --- a/projects/website/_src/_sass/main.scss +++ b/projects/website/_src/_sass/main.scss @@ -203,6 +203,13 @@ a { } } + &.doi { + color: var(--links-external); + @media not print { + @include add-icon("doi", $margin: 0.5rem); + } + } + &.file { color: var(--links-files); } diff --git a/projects/website/_src/assets/docs/fontes-design-2026.pdf b/projects/website/_src/assets/docs/fontes-design-2026.pdf new file mode 100644 index 00000000..95db5578 Binary files /dev/null and b/projects/website/_src/assets/docs/fontes-design-2026.pdf differ diff --git a/projects/website/_src/assets/docs/fontes-sesos-2026.pdf b/projects/website/_src/assets/docs/fontes-sesos-2026.pdf new file mode 100644 index 00000000..94f956c6 Binary files /dev/null and b/projects/website/_src/assets/docs/fontes-sesos-2026.pdf differ diff --git a/projects/website/_src/assets/icons/doi.svg b/projects/website/_src/assets/icons/doi.svg new file mode 100644 index 00000000..07770d02 --- /dev/null +++ b/projects/website/_src/assets/icons/doi.svg @@ -0,0 +1,4 @@ + + + + diff --git a/projects/website/_src/publications.html b/projects/website/_src/publications.html new file mode 100644 index 00000000..f331990a --- /dev/null +++ b/projects/website/_src/publications.html @@ -0,0 +1,19 @@ +--- +title: Publications +description: My research papers +permalink: /publications/ +--- + +{% for pub in site.data.publications %} +
+
+

{{ pub.title }}

{{ pub.doi }} +
+ {% if pub.venue %}

{{ pub.venue }}

{% endif %} +

+ +

+
+{% endfor %}