From ab9550ad68d649a06d3cafdc5a16421203320096 Mon Sep 17 00:00:00 2001 From: yqtian-se Date: Thu, 16 Jul 2026 20:44:51 +1000 Subject: [PATCH] Add Software Engineering Academy highlight --- content/awards/sigsoftAwards.md | 45 ++++++++++++++++---- layouts/index.html | 39 +++++++++++++++++ layouts/partials/academy_highlight.html | 26 ++++++++++++ static/css/custom.css | 56 ++++++++++++++++++++++++- 4 files changed, 157 insertions(+), 9 deletions(-) create mode 100644 layouts/index.html create mode 100644 layouts/partials/academy_highlight.html diff --git a/content/awards/sigsoftAwards.md b/content/awards/sigsoftAwards.md index 871127fd..c38a1be3 100644 --- a/content/awards/sigsoftAwards.md +++ b/content/awards/sigsoftAwards.md @@ -21,14 +21,43 @@ criteria for each of the SIGSOFT awards. ## Award Categories -### Senior Awards -- **[Software Engineering Academy](/academy/inaugural-class.html)** - Honors lasting contributions to software engineering, in research, practice, and education -- **[Distinguished Service Award](/awards/distinguishedservice/)** - Recognizes dedicated and important service to the software engineering community -- **[Outstanding Research Award](/awards/outstandingresearch/)** - Honors significant and lasting research contributions to the theory or practice of software engineering -- **[Influential Educator Award](/awards/influentialeducator/)** - Celebrates significant contributions and impact on software engineering education as a teacher, mentor, researcher, author, and/or policy maker - -### Junior Awards -- **[Outstanding Doctoral Dissertation Award](https://www2.sigsoft.org/awards/dissertation/)** - Presented to the author of an outstanding doctoral dissertation in software engineering +### Senior Awards +- **[Software Engineering Academy](../../academy/inaugural-class.html)** - Honors lasting contributions to software engineering, in research, practice, and education +- **[Distinguished Service Award](/awards/distinguishedservice/)** - Recognizes dedicated and important service to the software engineering community +- **[Outstanding Research Award](/awards/outstandingresearch/)** - Honors significant and lasting research contributions to the theory or practice of software engineering +- **[Influential Educator Award](/awards/influentialeducator/)** - Celebrates significant contributions and impact on software engineering education as a teacher, mentor, researcher, author, and/or policy maker + +### SIGSOFT Software Engineering Academy + +The Software Engineering Academy is a standing body of honor that recognizes +members of the software engineering community whose significant and lasting +contributions have shaped the field. + +Established by ACM SIGSOFT, the Software Engineering Academy celebrates the +people whose cumulative work, and whose influence on the work of others, have +advanced software engineering as a discipline and a practice. + +The Academy recognizes: + +1. **Lasting contributions**: Significant, cumulative advances to the theory or + practice of software engineering, sustained across a career. +2. **Influence on the field**: Work that has demonstrably shaped the research, + tools, and thinking of others across the community. +3. **Leadership and service**: Stewardship of the discipline through mentorship, + education, and service to the software engineering community. + +The founding class establishes the foundation the Academy will grow from. To +seed the Academy, the inaugural members were drawn from those whose standing in +the field is already firmly established: recognized leaders whose contributions +the community has long acknowledged, ACM Fellows within the software engineering +community, and past ACM SIGSOFT Outstanding Research Award recipients honored +for research, service, and impact. + +Going forward, new members are elected annually by a selection committee from +community nominations. View the [inaugural class](../../academy/inaugural-class.html). + +### Junior Awards +- **[Outstanding Doctoral Dissertation Award](https://www2.sigsoft.org/awards/dissertation/)** - Presented to the author of an outstanding doctoral dissertation in software engineering - **[Early Career Researcher Award](https://www2.sigsoft.org/awards/earlycareerresearcher/)** - Recognizes outstanding contributions by early career investigators - **[Frank Anger Memorial Award](https://www2.sigsoft.org/awards/anger/)** - Student travel award promoting cross-disciplinary research between SIGSOFT and SIGBED communities diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 00000000..4648ac97 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,39 @@ + + + + + {{ partial "headers.html" . }} + {{ partial "custom_headers.html" . }} + + + + +
+ + {{ partial "top.html" . }} + + {{ partial "nav.html" . }} + + {{ partial "carousel.html" . }} + + {{ partial "features.html" . }} + + {{ partial "academy_highlight.html" . }} + + {{ partial "testimonials.html" . }} + + {{ partial "see_more.html" . }} + + {{ partial "recent_posts.html" . }} + + {{ partial "clients.html" . }} + + {{ partial "footer.html" . }} + +
+ + + {{ partial "scripts.html" . }} + + + diff --git a/layouts/partials/academy_highlight.html b/layouts/partials/academy_highlight.html new file mode 100644 index 00000000..97ce2406 --- /dev/null +++ b/layouts/partials/academy_highlight.html @@ -0,0 +1,26 @@ +
+
+
+
+

New Recognition Program

+

Software Engineering Academy

+

+ Celebrating lasting contributions to software engineering in research, practice, and education. +

+

+ + View the Inaugural Class + +

+
+ +
+
+
diff --git a/static/css/custom.css b/static/css/custom.css index 5e37bc8f..fbffce17 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1,4 +1,58 @@ /* your styles go here */ + +.academy-highlight { + border-top: 1px solid #eeeeee; + border-bottom: 1px solid #eeeeee; +} + +.academy-highlight__row { + display: flex; + flex-wrap: wrap; + align-items: center; +} + +.academy-highlight__eyebrow { + color: #467fbf; + font-size: 13px; + font-weight: 700; + letter-spacing: 0; + margin-bottom: 8px; + text-transform: uppercase; +} + +.academy-highlight h2 { + font-size: 30px; + margin-top: 0; +} + +.academy-highlight .lead { + margin-bottom: 24px; +} + +.academy-highlight__photos { + display: grid; + gap: 10px; + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.academy-highlight__photos img { + aspect-ratio: 1; + border: 1px solid #dddddd; + display: block; + height: auto; + object-fit: cover; + width: 100%; +} + +@media (max-width: 991px) { + .academy-highlight__row { + display: block; + } + + .academy-highlight__photos { + margin-top: 22px; + } +} /* Example site test */ .box-image-text .image { @@ -21,4 +75,4 @@ table { td, th { border: 1px solid #333; padding: 0 .2em; -} \ No newline at end of file +}