Skip to content

Commit e68b7bb

Browse files
authored
Merge branch 'main' into codex/sigsoft50-story-page
2 parents 138ef1e + d696b68 commit e68b7bb

4 files changed

Lines changed: 111 additions & 9 deletions

File tree

content/awards/sigsoftAwards.md

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,43 @@ criteria for each of the SIGSOFT awards.
2121

2222
## Award Categories
2323

24-
### Senior Awards
25-
- **[Software Engineering Academy](/academy/inaugural-class.html)** - Honors lasting contributions to software engineering, in research, practice, and education
26-
- **[Distinguished Service Award](/awards/distinguishedservice/)** - Recognizes dedicated and important service to the software engineering community
27-
- **[Outstanding Research Award](/awards/outstandingresearch/)** - Honors significant and lasting research contributions to the theory or practice of software engineering
28-
- **[Influential Educator Award](/awards/influentialeducator/)** - Celebrates significant contributions and impact on software engineering education as a teacher, mentor, researcher, author, and/or policy maker
29-
30-
### Junior Awards
31-
- **[Outstanding Doctoral Dissertation Award](https://www2.sigsoft.org/awards/dissertation/)** - Presented to the author of an outstanding doctoral dissertation in software engineering
24+
### Senior Awards
25+
- **[Software Engineering Academy](../../academy/inaugural-class.html)** - Honors lasting contributions to software engineering, in research, practice, and education
26+
- **[Distinguished Service Award](/awards/distinguishedservice/)** - Recognizes dedicated and important service to the software engineering community
27+
- **[Outstanding Research Award](/awards/outstandingresearch/)** - Honors significant and lasting research contributions to the theory or practice of software engineering
28+
- **[Influential Educator Award](/awards/influentialeducator/)** - Celebrates significant contributions and impact on software engineering education as a teacher, mentor, researcher, author, and/or policy maker
29+
30+
### SIGSOFT Software Engineering Academy
31+
32+
The Software Engineering Academy is a standing body of honor that recognizes
33+
members of the software engineering community whose significant and lasting
34+
contributions have shaped the field.
35+
36+
Established by ACM SIGSOFT, the Software Engineering Academy celebrates the
37+
people whose cumulative work, and whose influence on the work of others, have
38+
advanced software engineering as a discipline and a practice.
39+
40+
The Academy recognizes:
41+
42+
1. **Lasting contributions**: Significant, cumulative advances to the theory or
43+
practice of software engineering, sustained across a career.
44+
2. **Influence on the field**: Work that has demonstrably shaped the research,
45+
tools, and thinking of others across the community.
46+
3. **Leadership and service**: Stewardship of the discipline through mentorship,
47+
education, and service to the software engineering community.
48+
49+
The founding class establishes the foundation the Academy will grow from. To
50+
seed the Academy, the inaugural members were drawn from those whose standing in
51+
the field is already firmly established: recognized leaders whose contributions
52+
the community has long acknowledged, ACM Fellows within the software engineering
53+
community, and past ACM SIGSOFT Outstanding Research Award recipients honored
54+
for research, service, and impact.
55+
56+
Going forward, new members are elected annually by a selection committee from
57+
community nominations. View the [inaugural class](../../academy/inaugural-class.html).
58+
59+
### Junior Awards
60+
- **[Outstanding Doctoral Dissertation Award](https://www2.sigsoft.org/awards/dissertation/)** - Presented to the author of an outstanding doctoral dissertation in software engineering
3261
- **[Early Career Researcher Award](https://www2.sigsoft.org/awards/earlycareerresearcher/)** - Recognizes outstanding contributions by early career investigators
3362
- **[Frank Anger Memorial Award](https://www2.sigsoft.org/awards/anger/)** - Student travel award promoting cross-disciplinary research between SIGSOFT and SIGBED communities
3463

layouts/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
{{ partial "features.html" . }}
2020

2121
{{ partial "sigsoft50_highlight.html" . }}
22+
23+
{{ partial "academy_highlight.html" . }}
2224

2325
{{ partial "testimonials.html" . }}
2426

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<section class="bar background-white academy-highlight">
2+
<div class="container">
3+
<div class="row academy-highlight__row">
4+
<div class="col-md-7">
5+
<p class="academy-highlight__eyebrow">New Recognition Program</p>
6+
<h2>Software Engineering Academy</h2>
7+
<p class="lead">
8+
Celebrating lasting contributions to software engineering in research, practice, and education.
9+
</p>
10+
<p>
11+
<a href="{{ "/academy/inaugural-class.html" | relURL }}" class="btn btn-template-main">
12+
View the Inaugural Class
13+
</a>
14+
</p>
15+
</div>
16+
<div class="col-md-5">
17+
<a href="{{ "/academy/inaugural-class.html" | relURL }}" class="academy-highlight__photos" aria-label="View the Software Engineering Academy inaugural class">
18+
<img src="{{ "/academy/academy-photos/mary-shaw.jpg" | relURL }}" alt="Mary Shaw">
19+
<img src="{{ "/academy/academy-photos/david-harel.jpg" | relURL }}" alt="David Harel">
20+
<img src="{{ "/academy/academy-photos/jeannette-m-wing.jpg" | relURL }}" alt="Jeannette M. Wing">
21+
<img src="{{ "/academy/academy-photos/elaine-weyuker.jpg" | relURL }}" alt="Elaine Weyuker">
22+
</a>
23+
</div>
24+
</div>
25+
</div>
26+
</section>

static/css/custom.css

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,49 @@
6161
}
6262
}
6363

64+
.academy-highlight {
65+
border-top: 1px solid #eeeeee;
66+
border-bottom: 1px solid #eeeeee;
67+
}
68+
69+
.academy-highlight__row {
70+
align-items: center;
71+
display: flex;
72+
}
73+
74+
.academy-highlight__eyebrow {
75+
color: #467fbf;
76+
font-size: 13px;
77+
font-weight: 700;
78+
letter-spacing: 0;
79+
margin-bottom: 8px;
80+
text-transform: uppercase;
81+
}
82+
83+
.academy-highlight h2 {
84+
font-size: 30px;
85+
margin-top: 0;
86+
}
87+
88+
.academy-highlight .lead {
89+
margin-bottom: 24px;
90+
}
91+
92+
.academy-highlight__photos {
93+
display: grid;
94+
gap: 10px;
95+
grid-template-columns: repeat(4, minmax(0, 1fr));
96+
}
97+
98+
.academy-highlight__photos img {
99+
aspect-ratio: 1;
100+
border: 1px solid #dddddd;
101+
display: block;
102+
height: auto;
103+
object-fit: cover;
104+
width: 100%;
105+
}
106+
64107
.sigsoft50-highlight {
65108
border-bottom: 1px solid #eeeeee;
66109
}
@@ -101,10 +144,12 @@
101144
}
102145

103146
@media (max-width: 991px) {
147+
.academy-highlight__row,
104148
.sigsoft50-highlight__row {
105149
display: block;
106150
}
107151

152+
.academy-highlight__photos,
108153
.sigsoft50-highlight__image {
109154
margin-top: 22px;
110155
}
@@ -492,4 +537,4 @@ table {
492537
td, th {
493538
border: 1px solid #333;
494539
padding: 0 .2em;
495-
}
540+
}

0 commit comments

Comments
 (0)