Skip to content

Commit 38702ca

Browse files
bw
1 parent ca5e98d commit 38702ca

File tree

7 files changed

+11
-21
lines changed

7 files changed

+11
-21
lines changed

package-lock.json

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/videos/steph.mov

4.6 MB
Binary file not shown.

src/App.svelte

-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<script>
2-
import { onMount } from 'svelte';
32
import Grid from './Grid.svelte';
43
import SectionHeader from './SectionHeader.svelte';
54
import { MAX_WIDTH } from './constants';
65
import projects from './projects';
76
8-
let email;
9-
onMount(() => (email = '[email protected]'));
10-
117
let contactFocused = false;
128
139
const people = projects.people

src/Grid.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<div>
106106
<a href={url} style="color: {color(index)}">
107107
<div class="media" style="height: {Math.round(mediaHeight)}px">
108-
{#if image.includes('.mp4')}
108+
{#if image.includes('.mp4') || image.includes('.mov')}
109109
<video autoPlay playsInline muted loop>
110110
<source src={image} />
111111
</video>

src/ProjectBox.svelte

-12
This file was deleted.

src/main.js

-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@ export default function () {
88
new App({
99
target: document.body,
1010
});
11-
12-
alert('We are recruiting! Go to http://www.specpublishing.com/joinspec-applynow');
1311
}

src/projects.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
export default {
22
topLevel: [
3+
{
4+
name:
5+
'Broken windows policing and gentrification not only harmed the Black community, but also strengthened Columbia’s reputation',
6+
image: 'videos/steph.mov',
7+
repo: 'policing-history',
8+
data: 'property-acquisition',
9+
url:
10+
'https://www.columbiaspectator.com/news/2020/10/05/broken-windows-policing-and-gentrification-not-only-harmed-the-black-community-but-also-strengthened-columbias-reputation/',
11+
},
312
{
413
name:
514
'Columbia wants the best and the brightest students. To keep up with top-ranked schools, it needs the richest too.',

0 commit comments

Comments
 (0)