fix: Turn Free Code Camp into freeCodeCamp (#15506)

* turn Free Code Camp into freecodecamp

* remove no-follow on navbar link
This commit is contained in:
Quincy Larson
2017-06-26 12:44:18 -05:00
committed by Berkeley Martinez
parent 836a47d56b
commit b28d1b00db
14 changed files with 28 additions and 30 deletions

View File

@ -212,7 +212,7 @@ module.exports = function(User) {
text: `
Hello,\n\n
This email is confirming that you requested to
reset your password for your Free Code Camp account.
reset your password for your freeCodeCamp account.
This is your email: ${ info.email }.
Go to ${ url } to reset your password.
\n
@ -439,8 +439,8 @@ module.exports = function(User) {
var mailOptions = {
type: 'email',
to: email,
from: 'Team@freecodecamp.com',
subject: 'Welcome to Free Code Camp!',
from: 'team@freecodecamp.com',
subject: 'Welcome to freeCodeCamp!',
protocol: isDev ? null : 'https',
host: isDev ? 'localhost' : 'freecodecamp.com',
port: isDev ? null : 443,

View File

@ -136,7 +136,7 @@
"Most web APIs transfer data in a format called JSON. JSON stands for JavaScript Object Notation.",
"You've already been using JSON whenever you create a JavaScript object. JSON is nothing more than object properties and their current values, sandwiched between a <code>{</code> and a <code>}</code>.",
"These properties and their values are often referred to as \"key-value pairs\".",
"Let's get the JSON from Free Code Camp's Cat Photo API.",
"Let's get the JSON from freeCodeCamp's Cat Photo API.",
"Here's the code you can put in your click event to do this:",
"<blockquote>$.getJSON(\"/json/cats.json\", function(json) {<br> $(\".message\").html(JSON.stringify(json));<br>});</blockquote>",
"Once you've added this, click the \"Get Message\" button. Your Ajax function will replace the \"The message will go here\" text with the raw JSON output from the Free Code Camp Cat Photo API."
@ -363,7 +363,7 @@
"id": "56bbb991ad1ed5201cd392d9",
"title": "Prefilter JSON",
"description": [
"If we don't want to render every cat photo we get from our Free Code Camp's Cat Photo JSON API, we can pre-filter the json before we loop through it.",
"If we don't want to render every cat photo we get from our freeCodeCamp Cat Photo JSON API, we can pre-filter the json before we loop through it.",
"Let's filter out the cat whose \"id\" key has a value of 1.",
"Here's the code to do this:",
"<blockquote>json = json.filter(function(val) {</br> return (val.id !== 1);</br>});</blockquote>"

View File

@ -61,7 +61,7 @@
"description": [
"<strong>Objective:</strong> Build a <a href='https://codepen.io' target='_blank'>CodePen.io</a> app that is functionally similar to this: <a href='https://codepen.io/FreeCodeCamp/full/eZGMjp/' target='_blank'>https://codepen.io/FreeCodeCamp/full/eZGMjp/</a>.",
"Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_blank'>user stories</a>. Use whichever libraries or APIs you need. Give it your own personal style.",
"<strong>User Story:</strong> I can see a table of the Free Code Camp campers who've earned the most brownie points in the past 30 days.",
"<strong>User Story:</strong> I can see a table of the freeCodeCamp campers who've earned the most brownie points in the past 30 days.",
"<strong>User Story:</strong> I can see how many brownie points they've earned in the past 30 days, and how many they've earned total.",
"<strong>User Story:</strong> I can toggle between sorting the list by how many brownie points they've earned in the past 30 days and by how many brownie points they've earned total.",
"<strong>Hint:</strong> To get the top 100 campers for the last 30 days: <a href='https://fcctop100.herokuapp.com/api/fccusers/top/recent' target='_blank'>https://fcctop100.herokuapp.com/api/fccusers/top/recent</a>.",

View File

@ -221,7 +221,7 @@ module.exports = function(app) {
return res.redirect('/');
}
return res.render('account/signin', {
title: 'Sign in to Free Code Camp'
title: 'Sign in to freeCodeCamp'
});
}
@ -239,7 +239,7 @@ module.exports = function(app) {
return res.redirect('/');
}
return res.render('account/deprecated-signin', {
title: 'Sign in to Free Code Camp using a Deprecated Login'
title: 'Sign in to freeCodeCamp using a Deprecated Login'
});
}
@ -257,7 +257,7 @@ module.exports = function(app) {
return res.redirect('/');
}
return res.render('account/email-signin', {
title: 'Sign in to Free Code Camp using your Email Address'
title: 'Sign in to freeCodeCamp using your Email Address'
});
}
@ -266,7 +266,7 @@ module.exports = function(app) {
return res.redirect('/');
}
return res.render('account/email-signup', {
title: 'Sign up for Free Code Camp using your Email Address'
title: 'Sign up for freeCodeCamp using your Email Address'
});
}

View File

@ -15,7 +15,7 @@ block content
| Update my settings
.col-xs-12
a.btn.btn-lg.btn-block.btn-primary.btn-link-social(href='/signout')
| Sign me out of Free Code Camp
| Sign me out of freeCodeCamp
.col-xs-12
a.btn.btn-lg.btn-block.btn-primary.btn-link-social(href='mailto:team@freecodecamp.com')
| Email us at team@freecodecamp.com

View File

@ -1,7 +1,7 @@
extends ../layout
block content
.text-center
h2 Are you new to Free Code Camp?
h2 Are you new to freeCodeCamp?
.spacer
a.btn.btn-lg.btn-block.btn-social.btn-primary(href='/email-signup')
i.fa.fa-envelope

View File

@ -10,7 +10,7 @@ Please verify your email by following the link below:
<a href="<%= verifyHref %>"><%= verifyHref %></a>
<br>
<br>
Feel free to email us at this address if you have any questions about Free Code Camp.
Feel free to email us at this address if you have any questions about freeCodeCamp.
<br>
<br>
And if you have a moment, check out our blog: https://medium.freecodecamp.com.
@ -20,4 +20,4 @@ Good luck with the challenges!
<br>
<br>
<br>
- the Free Code Camp Team.
- the freeCodeCamp Team

View File

@ -1,6 +1,6 @@
Hi <%= name || username %>,
Congratulations on recently completing all three Free Code Camp certifications. But you have not yet finished Free Code Camp. The most important part still remains: the nonprofit projects.
Congratulations on recently completing all three freeCodeCamp certifications. But you have not yet finished freeCodeCamp. The most important part still remains: the nonprofit projects.
These will help you contextualize and apply the raw skills you've picked up. You'll practice by building full stack JavaScript apps that real people will use. And in the end, you'll have code in production that you can showcase in your portfolio. This will be critical to your job search.
@ -10,4 +10,4 @@ Once you fill this out we will get back to you as quickly as possible to get you
Best,
Michael - nonprofit guy @ Free Code Camp
Michael - nonprofit guy @ freeCodeCamp

View File

@ -7,8 +7,8 @@ Please verify your email by following the link below:
<a href="<%= verifyHref %>"><%= verifyHref %></a>
<br>
<br>
Please email us at this address if you have any questions about Free Code Camp.
Please email us at this address if you have any questions about freeCodeCamp.
<br>
<br>
<br>
- the Free Code Camp Team
- the freeCodeCamp Team

View File

@ -2,7 +2,7 @@ meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
meta(name='viewport', content='width=device-width, initial-scale=1.0')
meta(name='csrf-token', content=_csrf)
title #{title} | Free Code Camp
title #{title} | freeCodeCamp
link(rel='canonical', href='http://freecodecamp.com')
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
@ -10,7 +10,7 @@ meta(name='viewport', content='width=device-width, initial-scale=1.0')
meta(name='csrf-token', content=_csrf)
meta(name='keywords', content='learn to code, learn to program, learn programming, learn javascript, learn coding, code, coding, programming, software engineer, software developer, mean stack, web development, development, engineering, learn node.js, learn angular.js, learn express.js, learn mongoDB, coding bootcamp, javascript, open source')
meta(property="og:title", content="Learn to code and help nonprofits")
meta(property="og:site_name", content="Free Code Camp")
meta(property="og:site_name", content="freeCodeCamp")
meta(name='twitter:widgets:csp', content='on')
meta(name='p:domain_verify', content='d0bc047a482c03c24f1168004c2a216a')
meta(property="og:url", content="http://www.freecodecamp.com")

View File

@ -4,17 +4,15 @@ nav.navbar.navbar-default.navbar-fixed-top.nav-height
.col-xs-12
span.hamburger-text Menu
a.navbar-brand(href='/challenges/next-challenge')
img.img-responsive.nav-logo(src='https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg', alt='learn to code javascript at Free Code Camp logo')
img.img-responsive.nav-logo(src='https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg', alt='learn to code javascript at freeCodeCamp logo')
.collapse.navbar-collapse
ul.nav.navbar-nav.navbar-right.hamburger-dropdown
li.hidden-xs
a#nav-map-btn(href='/map' onclick='if (!(event.ctrlKey || event.metaKey)) {return false;}') Map
li.visible-xs
a(href='/map') Map
li.hidden-xs
a#nav-chat-btn(href='//gitter.im/freecodecamp/freecodecamp' onclick="if (!(event.ctrlKey || event.metaKey)) {return false;}") Chat
li.visible-xs
a(href="//gitter.im/freecodecamp/freecodecamp" target="_blank") Chat
li
a(href="//gitter.im/freecodecamp/home" target="_blank") Chat
li
a(href='http://forum.freecodecamp.com', target='_blank') Forum
li

View File

@ -23,15 +23,15 @@ block content
.row
.col-xs-12.col-sm-12.col-md-4
img.img-responsive.testimonial-image.img-center(src="//i.imgur.com/ZHnFFN5.jpg", alt="Ewa's testimonial image")
p.nonprofit-testimonial-copy With Free Code Camp's valuable contribution, we were able to improve all of our systems and processes as part of our Wonder Women Eastern Indonesia program, and make sure that even more life changing technologies get to where they are needed most.
p.nonprofit-testimonial-copy With freeCodeCamp's valuable contribution, we were able to improve all of our systems and processes as part of our Wonder Women Eastern Indonesia program, and make sure that even more life changing technologies get to where they are needed most.
h3 - Ewa Wojkowska with Kopernik
.col-xs-12.col-sm-12.col-md-4
img.img-responsive.testimonial-image.img-center(src="//i.imgur.com/KHF8O2i.jpg", alt="Jennifer's testimonial image")
p.nonprofit-testimonial-copy We have been blown away by the professional quality of the work that has been produced by the campers working on our projects. Free Code Camp has been an invaluable partner and we are grateful for their support.
p.nonprofit-testimonial-copy We have been blown away by the professional quality of the work that has been produced by the campers working on our projects. freeCodeCamp has been an invaluable partner and we are grateful for their support.
h3 - Jennifer McDowell with Child First Authority
.col-xs-12.col-sm-12.col-md-4
img.img-responsive.testimonial-image.img-center(src="//i.imgur.com/9VknVe3.jpg", alt="Stephanie's testimonial image")
p.nonprofit-testimonial-copy We had the pleasure to work with two very talented campers who went above and beyond to create a web-based app for us. I would highly recommend that nonprofits apply to Free Code Camp with their custom solution needs!
p.nonprofit-testimonial-copy We had the pleasure to work with two very talented campers who went above and beyond to create a web-based app for us. I would highly recommend that nonprofits apply to freeCodeCamp with their custom solution needs!
h3 - Stephanie McAllister with Timeraiser
.spacer
hr

View File

@ -3,7 +3,7 @@ block content
.col-xs-12.col-sm-8.col-sm-offset-2.col-md-6.col-md-offset-3
h2.text-center Software Resources for Nonprofits
hr
p Please note that Free Code Camp is not partnered with, nor do we receive a referral fee from, any of the following providers. We simply want to help guide you toward a solution for your organization.
p Please note that freeCodeCamp is not partnered with, nor do we receive a referral fee from, any of the following providers. We simply want to help guide you toward a solution for your organization.
h3 Skills-based Volunteer Organizations:
ul
li

View File

@ -2,7 +2,7 @@ extends ../layout
block content
.row
.col-xs-12.col-sm-10.col-sm-offset-1.col-md-6.col-md-offset-3.text-center
h1 Welcome to Free Code Camp!
h1 Welcome to freeCodeCamp!
p You have created a brand new account. Check your email so we can verify your email address.
p If you previously had an account, and created this new account by accident, try signing in with a different email address
a(href='/email-signin') here