-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .eslintignore to skip asset files
- Loading branch information
1 parent
502f3b8
commit 08361d8
Showing
39 changed files
with
579 additions
and
599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/src/assets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
public | ||
src/assets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"jsxBracketSameLine": false, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import React from 'react'; | ||
import Link from 'gatsby-link'; | ||
import React from 'react' | ||
import Link from 'gatsby-link' | ||
|
||
const Footer = () => ( | ||
<div> | ||
|
@@ -10,8 +10,8 @@ const Footer = () => ( | |
<div className="widgets-content footer-widget-wrap"> | ||
<h3 className="widgets-title">About #VetsWhoCode</h3> | ||
<p> | ||
FRAGO, doing business as #VetsWhoCode, is an exempt organization as described in Section 501(c)(3) of | ||
the Internal Revenue Code. Our EIN is 47-3555231. | ||
FRAGO, doing business as #VetsWhoCode, is an exempt organization as described in | ||
Section 501(c)(3) of the Internal Revenue Code. Our EIN is 47-3555231. | ||
</p> | ||
<div className="footer-social"> | ||
<a href="http://bit.ly/vetswhocode-fb"> | ||
|
@@ -69,7 +69,11 @@ const Footer = () => ( | |
<Link to="/contact">Contact Us</Link> | ||
</li> | ||
<li> | ||
<a href="https://medium.com/vets-who-code" rel="noopener noreferrer" target="_blank"> | ||
<a | ||
href="https://medium.com/vets-who-code" | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
> | ||
<span>Blog</span> | ||
</a> | ||
</li> | ||
|
@@ -85,8 +89,10 @@ const Footer = () => ( | |
<div className="office map"> | ||
<p> | ||
<span>Hi, if you have any questions, please drop us a line.</span> | ||
<br />Email: [email protected] | ||
<br />Phone: (917) 960-3806 | ||
<br /> | ||
Email: [email protected] | ||
<br /> | ||
Phone: (917) 960-3806 | ||
</p> | ||
</div> | ||
</div> | ||
|
@@ -98,7 +104,7 @@ const Footer = () => ( | |
<div className="container"> | ||
<div className="row"> | ||
<div className="col-md-6 col-sm-6"> | ||
<p className="copyright">© #VetsWhoCode</p> | ||
<p className="copyright">© #VetsWhoCode</p> | ||
</div> | ||
<div className="col-md-6 col-sm-6"> | ||
<ul className="footer-menu"> | ||
|
@@ -111,6 +117,6 @@ const Footer = () => ( | |
</div> | ||
</footer> | ||
</div> | ||
); | ||
) | ||
|
||
export default Footer; | ||
export default Footer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import React from 'react'; | ||
import HeaderSlider from "./HeaderSlider"; | ||
import React from 'react' | ||
import HeaderSlider from './HeaderSlider' | ||
|
||
const Header = () => ( | ||
<header id="site-header" className="site-header flexslider classic"> | ||
<HeaderSlider /> | ||
</header> | ||
); | ||
export default Header; | ||
) | ||
export default Header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import React, { Component } from 'react'; | ||
import React, { Component } from 'react' | ||
|
||
class Loader extends Component { | ||
componentDidMount() { | ||
global.jQuery = require('../../static/vendor/jquery/dist/jquery'); | ||
window.$ = jQuery; | ||
window.jQuery = jQuery; | ||
this.handleLoader(); | ||
global.jQuery = require('../../static/vendor/jquery/dist/jquery') | ||
window.$ = jQuery | ||
window.jQuery = jQuery | ||
this.handleLoader() | ||
} | ||
|
||
handleLoader = () => { | ||
$(window).on('load', () => { | ||
$('#loader').fadeOut(); | ||
$('#loader').fadeOut() | ||
$('#loader-wrapper') | ||
.delay(100) | ||
.fadeOut(); | ||
}); | ||
.fadeOut() | ||
}) | ||
} | ||
|
||
render() { | ||
return ( | ||
<div id="loader-wrapper"> | ||
<div id="loader" /> | ||
</div> | ||
); | ||
) | ||
} | ||
} | ||
|
||
export default Loader; | ||
export default Loader |
Oops, something went wrong.