-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWriting.jsx
27 lines (21 loc) · 889 Bytes
/
Writing.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Writing = React.createClass({
render: function() {
return (
<div>
<section id="writing" className="main style1 special">
<div className="container">
<header className="major">
<h2>Writing & Film</h2>
<h3>TV, Film, Etc...</h3>
</header>
<p><a href="/images/backpackers_1.jpg" target="_blank">"Backpackers" Promo (Pilot Script Upon Request)</a></p>
<p><a href="mailto:[email protected]" target="_blank">"Backpackers" Show Bible (Upon Request)</a></p>
<p><a href="/writing/siliconvalleys04e01dosed.pdf" target="_blank">"Silicon Valley" Spec Script - S04E01 "Dosed"</a></p>
<p><a href="mailto:[email protected]" target="_blank">"Sex.com: The Crown Jewel" Feature Script (Upon Request)</a></p>
<p><a href="https://vimeo.com/123588299" target="_blank">"The Line" Short Film</a></p>
</div>
</section>
</div>
);
}
});