Skip to content

Commit d696b68

Browse files
authored
Add Software Engineering Academy highlight (#146)
1 parent 4893d20 commit d696b68

4 files changed

Lines changed: 157 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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ .Site.LanguageCode }}">
3+
4+
<head>
5+
{{ partial "headers.html" . }}
6+
{{ partial "custom_headers.html" . }}
7+
</head>
8+
9+
<body>
10+
11+
<div id="all">
12+
13+
{{ partial "top.html" . }}
14+
15+
{{ partial "nav.html" . }}
16+
17+
{{ partial "carousel.html" . }}
18+
19+
{{ partial "features.html" . }}
20+
21+
{{ partial "academy_highlight.html" . }}
22+
23+
{{ partial "testimonials.html" . }}
24+
25+
{{ partial "see_more.html" . }}
26+
27+
{{ partial "recent_posts.html" . }}
28+
29+
{{ partial "clients.html" . }}
30+
31+
{{ partial "footer.html" . }}
32+
33+
</div>
34+
<!-- /#all -->
35+
36+
{{ partial "scripts.html" . }}
37+
38+
</body>
39+
</html>
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: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,58 @@
11
/* your styles go here */
2+
3+
.academy-highlight {
4+
border-top: 1px solid #eeeeee;
5+
border-bottom: 1px solid #eeeeee;
6+
}
7+
8+
.academy-highlight__row {
9+
display: flex;
10+
flex-wrap: wrap;
11+
align-items: center;
12+
}
13+
14+
.academy-highlight__eyebrow {
15+
color: #467fbf;
16+
font-size: 13px;
17+
font-weight: 700;
18+
letter-spacing: 0;
19+
margin-bottom: 8px;
20+
text-transform: uppercase;
21+
}
22+
23+
.academy-highlight h2 {
24+
font-size: 30px;
25+
margin-top: 0;
26+
}
27+
28+
.academy-highlight .lead {
29+
margin-bottom: 24px;
30+
}
31+
32+
.academy-highlight__photos {
33+
display: grid;
34+
gap: 10px;
35+
grid-template-columns: repeat(4, minmax(0, 1fr));
36+
}
37+
38+
.academy-highlight__photos img {
39+
aspect-ratio: 1;
40+
border: 1px solid #dddddd;
41+
display: block;
42+
height: auto;
43+
object-fit: cover;
44+
width: 100%;
45+
}
46+
47+
@media (max-width: 991px) {
48+
.academy-highlight__row {
49+
display: block;
50+
}
51+
52+
.academy-highlight__photos {
53+
margin-top: 22px;
54+
}
55+
}
256
/* Example site test */
357

458
.box-image-text .image {
@@ -21,4 +75,4 @@ table {
2175
td, th {
2276
border: 1px solid #333;
2377
padding: 0 .2em;
24-
}
78+
}

0 commit comments

Comments
 (0)