Skip to content
This repository was archived by the owner on Feb 19, 2022. It is now read-only.

Use SSL for links to formidable.com #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# es6-interactive-guide

An interactive guide to ES6

[live site](http://projects.formidablelabs.com/es6-interactive-guide/)
[live site](https://stack.formidable.com/es6-interactive-guide/)

Running the page locally:

```
npm install
webpack // add --watch if you like
// open index.html in browser
```
```
96 changes: 48 additions & 48 deletions components/footer.jsx
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
'use strict';
"use strict";

import React from 'react/addons';
import Radium from 'radium';
import React from "react/addons";
import Radium from "radium";

import Container from './container.jsx';
import Container from "./container.jsx";

const styles = {
footer: {
padding: '36px 0',
background: '#2b303b',
color: '#fff',
textAlign: 'center',
padding: "36px 0",
background: "#2b303b",
color: "#fff",
textAlign: "center",
fontSize: 18,
borderTop: '1px solid #1D2227'
borderTop: "1px solid #1D2227"
},

logoLink: {
display: 'block',
margin: '16px 0'
display: "block",
margin: "16px 0"
},

link: {
fontWeight: 700,
color: '#FF4136',
color: "#FF4136",

':hover': {
color: '#fff'
":hover": {
color: "#fff"
}
}
};

export default React.createClass(Radium.wrap({
displayName: 'Footer',
export default React.createClass(
Radium.wrap({
displayName: "Footer",

render() {
return (
<footer style={styles.footer}>
<Container>
<p>
Made with love in Seattle by
render() {
return (
<footer style={styles.footer}>
<Container>
<p>
Made with love in Seattle by
<a style={styles.logoLink} href="https://formidable.com">
<img
width="300"
src="img/formidable-logo.svg"
alt="Formidable"
/>
</a>
</p>

<a
style={styles.logoLink}
href="http://formidablelabs.com"
>
<img
width="300"
src="img/formidable-logo.svg"
alt="Formidable Labs" />
</a>
</p>

<p>
{'P.S. '}
<a
ref="link"
style={styles.link}
href="http://formidablelabs.com/careers/">
We’re hiring
</a>
.
</p>
</Container>
</footer>
);
}
}));
<p>
{"P.S. "}
<a
ref="link"
style={styles.link}
href="https://formidable.com/careers/"
>
We’re hiring
</a>
.
</p>
</Container>
</footer>
);
}
})
);