Skip to content

Commit

Permalink
Setting up HDC archival
Browse files Browse the repository at this point in the history
  • Loading branch information
jalevine committed Aug 20, 2024
1 parent 5990739 commit 15f6f81
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion _faculty/carlos_scheidegger.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Carlos Scheidegger
role: Assistant Professor
role: Associate Professor
website: http://cscheid.net/
photo: headshots/cscheid.png
---
2 changes: 1 addition & 1 deletion _faculty/joshua_levine.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Josh Levine
role: Assistant Professor
role: Associate Professor
website: http://www.cs.arizona.edu/~josh
photo: headshots/josh.png
---
6 changes: 0 additions & 6 deletions _faculty/stephens_kobourov.md

This file was deleted.

5 changes: 5 additions & 0 deletions _layouts/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<div class="col-md-1"></div>
<div class="col-md-10">
<table>
<tr>
<td colspan=2>
<p style="color: red;">Nearly a decade after it began, the HDC Lab is no longer active. These pages are archival and will not be updated regularly.</p>
</td>
</tr>
<tr>
<td class="hidden-xs hidden-sm" style="width: 150px;">
<a href="http://hdc.cs.arizona.edu"><img id="logo" style="height: 72px;" src="/img/logo.svg"></a>
Expand Down
8 changes: 4 additions & 4 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
%vertical-rhythm {
margin-bottom: $spacing-unit / 2;
margin-bottom: calc($spacing-unit / 2);
}


Expand Down Expand Up @@ -110,7 +110,7 @@ h1, h2, h3, h4, h5, h6 {
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: $spacing-unit / 2;
padding-left: calc($spacing-unit / 2);
font-size: 18px;
letter-spacing: -1px;
font-style: italic;
Expand Down Expand Up @@ -165,8 +165,8 @@ pre {
@include media-query($on-laptop) {
max-width: -webkit-calc(800px - (#{$spacing-unit}));
max-width: calc(800px - (#{$spacing-unit}));
padding-right: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
padding-right: calc($spacing-unit / 2);
padding-left: calc($spacing-unit / 2);
}
}

Expand Down
8 changes: 4 additions & 4 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@

.footer-heading {
font-size: 18px;
margin-bottom: $spacing-unit / 2;
margin-bottom: calc($spacing-unit / 2);
}

.contact-list,
Expand All @@ -110,14 +110,14 @@
.footer-col-wrapper {
font-size: 15px;
color: $grey-color;
margin-left: -$spacing-unit / 2;
margin-left: calc($spacing-unit / -2);
@extend %clearfix;
}

.footer-col {
float: left;
margin-bottom: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
margin-bottom: calc($spacing-unit / 2);
padding-left: calc($spacing-unit / 2);
}

.footer-col-1 {
Expand Down
4 changes: 2 additions & 2 deletions people.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: "People"
{% comment %}
## Members ([Alumni](/alumni/))
{% endcomment %}
## Members
## Former Members

<style>
table.four-columns td {
Expand Down Expand Up @@ -35,7 +35,7 @@ title: "People"
<p><br></p>

<table class="four-columns" width="100%">
{% assign faculty_order = 'Assistant Professor|Professor' | split: '|' %}
{% assign faculty_order = 'Associate Professor|Assistant Professor' | split: '|' %}
{% assign faculty = site.faculty | sort:'name' | sort_by_index: 'role', faculty_order %}
{% tablerow member in faculty cols:4 %}
<img src="{{ member.photo | replace: "headshots","headcircs" | default: 'headcircs/placeholder.png' }}" alt="{{ member.name }}"><br>
Expand Down

0 comments on commit 15f6f81

Please # to comment.