From 1ed576bee11e88d01dfdb40b146cdee8440b741d Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Thu, 15 Oct 2015 22:09:12 -0700 Subject: [PATCH] Style show job page --- common/app/routes/Jobs/components/ShowJob.jsx | 57 ++++++++++++++----- 1 file changed, 42 insertions(+), 15 deletions(-) diff --git a/common/app/routes/Jobs/components/ShowJob.jsx b/common/app/routes/Jobs/components/ShowJob.jsx index b89d2b681a..b1d8faad5a 100644 --- a/common/app/routes/Jobs/components/ShowJob.jsx +++ b/common/app/routes/Jobs/components/ShowJob.jsx @@ -1,5 +1,5 @@ import React, { PropTypes } from 'react'; -import { Row, Thumbnail, Panel, Well } from 'react-bootstrap'; +import { Row, Col, Thumbnail, Panel } from 'react-bootstrap'; import moment from 'moment'; const defaultImage = @@ -50,22 +50,49 @@ export default React.createClass({ return (
- - + - Position: { position || 'N/A' } -
- Location: { locale ? locale : `${city}, ${state}` } -
- Contact: { email || phone || 'N/A' } -
- Posted On: { moment(postedOn).format('MMMM Do, YYYY') } + +

+ { company } +

+
+
+ + + + + + + Position: { position || 'N/A' } +
+ Location: { locale ? locale : `${city}, ${state}` } +
+ Contact: { email || phone || 'N/A' } +
+ Posted On: { moment(postedOn).format('MMMM Do, YYYY') } + +
+
+ + +

{ description }

+ +
-

{ description }

- +
);