Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/css/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/css/post.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.article_title {
color: green;
}
17 changes: 17 additions & 0 deletions src/css/stayconnected.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.blue_box {
background-color: #264D68;
width: 100%;
height: 400px;
position: fixed;
z-index: -1;
}

.page_title {
color: white;
width: 100%;
text-align: center;
}

.button_title {
color: #264D68;
}
38 changes: 38 additions & 0 deletions src/pages/post.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React from 'react'
// import Link from 'gatsby-link'
import '../css/bootstrap.css'
import '../css/post.scss'
import Button from 'react-bootstrap/lib/Button';
import PageHeader from 'react-bootstrap/lib/PageHeader';
import Panel from 'react-bootstrap/lib/Panel';

class PostPage extends React.Component {
render() {
return (
<div>
<Button bsStyle="link">Back to News and Events</Button>
<PageHeader>
<h1 className="article_title">Article Title Here</h1>
<br></br>
<small>February 15, 2018</small>
</PageHeader>
<Panel>
<Panel.Body>
article content Here
Lorem ipsum dolor sit amet, et pro purto putant, nam sonet suscipit ea. Te iuvaret dissentias ius, te facer eripuit nam. At choro meliore dissentiet vim. Eu vix reprimique liberavisse.

Quem equidem habemus per an. Ad tale mandamus molestiae usu, ut assum laoreet splendide eam. Mundi habemus suscipiantur eu usu, mel dicit vulputate ex. Qui atomorum definitionem ne, ex vero eripuit denique vel.

Eirmod adversarium vis ex, deleniti perpetua signiferumque sit ad. Ad sed menandri erroribus forensibus, ex quas viris ornatus vis, ei odio minimum consetetur has. In eius adipiscing nam, inani commune expetendis ad vim, enim partem deserunt ea pri. An vix vidisse liberavisse, aliquip aliquid erroribus mei at, no senserit elaboraret mel. Esse ponderum definitiones ne his.

Ne usu nulla homero persius. Pri eu quis aliquam, eius debet debitis ei cum. Sea ea autem recteque. Ut per tale blandit explicari. Vel no sensibus gubergren, no sea quot invidunt oporteat, mel dico offendit sententiae no.

Vel ne autem simul reformidans. Eum ne homero percipitur. An usu mollis consequat interpretaris, quo aliquip dolorem et. Dicat semper duo ei, in unum facete salutandi eam, ut choro mucius nostro usu. Qui in choro dissentiet, denique sapientem vituperatoribus cu vel.
</Panel.Body>
</Panel>
</div>
);
}
}

export default PostPage
120 changes: 120 additions & 0 deletions src/pages/stayconnected.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
import React from 'react'
import Link from 'gatsby-link'
import '../css/bootstrap.css'
import '../css/stayconnected.scss'
import Button from 'react-bootstrap/lib/Button';
import PageHeader from 'react-bootstrap/lib/PageHeader';
import Panel from 'react-bootstrap/lib/Panel';
import FormGroup from 'react-bootstrap/lib/FormGroup';
import FormControl from 'react-bootstrap/lib/FormControl';
import ControlLabel from 'react-bootstrap/lib/ControlLabel';
import HelpBlock from 'react-bootstrap/lib/HelpBlock';
import DropdownButton from 'react-bootstrap/lib/DropdownButton';
import MenuItem from 'react-bootstrap/lib/MenuItem';

class StayConnectedPage extends React.Component {
render() {
return (
<div>
<div className='blue_box'></div>
<PageHeader className='page_title'>
Stay Connected
</PageHeader>
<Panel>
<Panel.Body>
As the independent publication serving the UC Berkeley campus and the
city of Berkeley, The Daily Californian has a print circulation of 10,000
and additionally reaches more 36,000 students and 22,000 faculty and staff
on campus. The online version, dailycal.org, averages over 800,000 monthly
hits. Stay connected through our events and by liking our Facebook page.

The Daily Californian Alumni Association was created to bring alumni of the
newspaper together as well as to provide mentorship and financial support to
the current student staff.
</Panel.Body>
</Panel>
<Button bsSize="large" className="button_title"><h3>Like us on Facebook!</h3></Button>
<Button bsSize="large" className="button_title"><h3>Follow us on Twitter!</h3></Button>
<Panel>
<Panel.Heading>Subscribe to the alumni newsletter!</Panel.Heading>
<Panel.Body>
Want to stay connected and up to date on what your fellow Daily Cal Alumni
are up to? Sign up for our free monthly online alumni newsletter below.

If you would like to contribute to the newsletter by sharing work you have
done recently or if you would like us to profile you and your work please
contact alumni-newsletter@dailycal.org.
<FormGroup>
<ControlLabel>NAME</ControlLabel>
<FormControl
type="text"
placeholder="First"
/>
<FormControl.Feedback />
<FormControl
type="text"
placeholder="Last"
/>
<FormControl.Feedback />

<ControlLabel>PHONE</ControlLabel>
<FormControl
type="text"
placeholder="(xxx)xxx-xxxx"
/>
<FormControl.Feedback />

<ControlLabel>EMAIL</ControlLabel>
<FormControl
type="text"
placeholder="Email"
/>
<FormControl.Feedback />

<ControlLabel>ADDRESS</ControlLabel>
<FormControl
type="text"
placeholder="Street Address"
/>
<FormControl.Feedback />
<FormControl
type="text"
placeholder="Address Line 2"
/>
<FormControl.Feedback />
<FormControl
type="text"
placeholder="City"
/>
<FormControl.Feedback />
<FormControl
type="text"
placeholder="State/Province/Region"
/>
<FormControl.Feedback />
<FormControl
type="text"
placeholder="ZIP/Postal Code"
/>
<FormControl.Feedback />
<DropdownButton
bsSize="small"
title="Country"
id="dropdown-size-small"
>
<MenuItem eventKey="1">Action</MenuItem>
<MenuItem eventKey="2">Another action</MenuItem>
<MenuItem eventKey="3">Something else here</MenuItem>
<MenuItem divider />
<MenuItem eventKey="4">Separated link</MenuItem>
</DropdownButton>
</FormGroup>
<Button bsStyle="primary">SIGN UP NOW</Button>
</Panel.Body>
</Panel>
</div>
);
}
}

export default StayConnectedPage
20 changes: 10 additions & 10 deletions static/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.