-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redesign homepage with updated fields.
- Loading branch information
1 parent
f6bdd94
commit d79f071
Showing
13 changed files
with
2,380 additions
and
54 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,32 +1,80 @@ | ||
[ | ||
{ | ||
"title": "Architecture & Design", | ||
"tag": "arch", | ||
"description": "study principles, methods, and tools to create high-quality software systems while meeting the functional and non-functional requirements of stakeholders" | ||
"id": "aise", | ||
"title": "AI for Software Engineering", | ||
"icon": "field-aise", | ||
"description": "study the use of artificial intelligence techniques to improve software development processes and outcomes" | ||
}, | ||
{ | ||
"title": "Maintenance & Evolution", | ||
"tag": "m&t", | ||
"description": "study techniques and tools for managing, modifying, and improving software systems throughout their lifecycle to ensure their continued usefulness and value to stakeholders" | ||
"id": "cloud", | ||
"title": "Cloud-based Systems", | ||
"icon": "field-cloud", | ||
"description": "study the design, implementation, and use of software systems that are deployed and operated on cloud computing infrastructure" | ||
}, | ||
{ | ||
"id": "devtools", | ||
"title": "Developer Tools", | ||
"icon": "field-devtools", | ||
"description": "study the design, implementation, and use of tools that support software developers in their work, such as integrated development environments, version control systems, and build automation tools" | ||
}, | ||
{ | ||
"id": "dsl", | ||
"title": "Domain-Specific Languages", | ||
"icon": "field-dsl", | ||
"description": "study the design, implementation, and use of programming languages and tools that are specialized to a particular application domain" | ||
}, | ||
{ | ||
"id": "distsys", | ||
"title": "Distributed Systems", | ||
"tag": "dist. sys.", | ||
"icon": "field-distsys", | ||
"description": "study methods and technologies for designing, building, and operating computer systems that consist of multiple autonomous components that communicate and coordinate with each other over a network" | ||
}, | ||
{ | ||
"id": "ese", | ||
"title": "Empirical Software Engineering", | ||
"icon": "field-ese", | ||
"description": "use of empirical methods to investigate software development processes and artifacts, and to evaluate and compare software engineering techniques and tools" | ||
}, | ||
{ | ||
"id": "human", | ||
"title": "Human Factors", | ||
"tag": "human", | ||
"icon": "field-human", | ||
"description": "study the interactions between software developers and software systems, with the aim of improving the usability, efficiency, and effectiveness of software development processes and outcomes" | ||
}, | ||
{ | ||
"title": "Languages and Compilers", | ||
"tag": "lang", | ||
"description": "design, implement, and optimize programming languages and their compilers to improve the efficiency, reliability, and usability of software systems" | ||
"id": "mntevl", | ||
"title": "Maintenance and Evolution", | ||
"icon": "field-mntevl", | ||
"description": "study techniques and tools for managing, modifying, and improving software systems throughout their lifecycle to ensure their continued usefulness and value to stakeholders" | ||
}, | ||
{ | ||
"id": "msr", | ||
"title": "Mining Software Repositories", | ||
"icon": "field-msr", | ||
"description": "use of data mining and machine learning techniques to analyze and understand software development processes and artifacts, and to support decision-making in software engineering" | ||
}, | ||
{ | ||
"id": "oss", | ||
"title": "Open Source", | ||
"icon": "field-oss", | ||
"description": "study the development, use, and governance of software systems that are made available to the public under an open source license" | ||
}, | ||
{ | ||
"id": "arch", | ||
"title": "Software Architecture", | ||
"icon": "field-arch", | ||
"description": "study principles, methods, and tools to create high-quality software systems while meeting the functional and non-functional requirements of stakeholders" | ||
}, | ||
{ | ||
"id": "sustsw", | ||
"title": "Sustainable Software", | ||
"icon": "field-sustsw", | ||
"description": "study the environmental and economic impact of software systems, and the design, implementation, and use of software systems that are environmentally friendly and economically viable" | ||
}, | ||
{ | ||
"title": "Software Development Analytics", | ||
"tag": "sda", | ||
"description": "apply data science techniques to software engineering data to gain insights into software development processes, improve software development practices, and support decision-making in software development organizations" | ||
"id": "techdebt", | ||
"title": "Technical Debt", | ||
"icon": "field-techdebt", | ||
"description": "study the trade-offs between short-term and long-term benefits of software development activities" | ||
} | ||
] |
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 @@ | ||
copyright_text: 'SEARCH Group • University of Groningen • 2023<br/><span style="font-size: 0.8em;">Powered by <a class="zerostatic" href="https://github.com/zerostaticthemes/jekyll-serif-theme">Jekyll Serif</a>. Graphics by <a class="zerostatic" href="https://fontawesome.com">Font Awesome</a>, <a class="zerostatic" href="https://icons8.com">Icons8</a>, and <a class="zerostatic" href="https://thenounproject.com/vectorsmarket/">Vectors Market</a>.</span>' | ||
copyright_text: 'SEARCH Group • University of Groningen • 2023<br/><span style="font-size: 0.8em;">Some graphics by <a href="https://fontawesome.com" rel="noopener" target="_blank">Font Awesome</a>, <a href="https://icons8.com" rel="noopener" target="_blank">Icons8</a>, and <a href="https://thenounproject.com/vectorsmarket/" rel="noopener" target="_blank">Vectors Market</a>.</span>' |
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,38 @@ | ||
<div> | ||
<div class="flex items-top"> | ||
<!-- Member image --> | ||
<div class="pr-3"> | ||
<div class="w-24 h-24 overflow-hidden rounded-md"> | ||
<img | ||
alt="{{ member.title }}" | ||
title="{{ member.title }}" | ||
loading="lazy" | ||
class="w-full" | ||
src="{{ member.image | relative_url }}" | ||
/> | ||
</div> | ||
</div> | ||
<!-- Member info --> | ||
<div> | ||
<p class="font-serif text-lg text-primary"> | ||
<a href="{{member.contact.homepage}}" rel="noopener" target="_blank">{{ member.title | remove: "Prof." | remove: "dr." | remove: "ir." | remove: "Dr." }}</a> | ||
</p> | ||
<p class="text-md text-gray-500"> | ||
{{ member.position }} | ||
{% if member.position_remark %} | ||
({{ member.position_remark }}) | ||
{% endif %} | ||
</p> | ||
<p class="flex space-x-2 mt-2"> | ||
{% for field in member.fields %} | ||
<svg class="w-8 h-8 fill-black"> | ||
<use xlink:href="/assets/graphics/sprites.svg#field-{{ field }}"></use> | ||
</svg> | ||
{% endfor %} | ||
</p> | ||
</div> | ||
</div> | ||
<p class="italic mt-2"> | ||
<q>{{ member.callout | strip }}</q> | ||
</p> | ||
</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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.