diff --git a/client/less/main.less b/client/less/main.less index 76867f4707..5c3837c1db 100644 --- a/client/less/main.less +++ b/client/less/main.less @@ -1179,4 +1179,8 @@ and (max-width : 400px) { @import "jobs.less"; @import "challenge.less"; @import "toastr.less"; -@import "map.less"; \ No newline at end of file +@import "map.less"; + +ol, li { + list-style-type: disc; +} diff --git a/server/boot/randomAPIs.js b/server/boot/randomAPIs.js index 81d70760c2..57ea58a5f4 100644 --- a/server/boot/randomAPIs.js +++ b/server/boot/randomAPIs.js @@ -28,6 +28,10 @@ module.exports = function(app) { router.get('/terms', terms); router.get('/privacy', privacy); router.get('/how-nonprofit-projects-work', howNonprofitProjectsWork); + router.get( + '/software-resources-for-nonprofits', + softwareResourcesForNonprofits + ); router.get('/code-of-conduct', codeOfConduct); router.get('/academic-honesty', academicHonesty); router.get( @@ -59,6 +63,12 @@ module.exports = function(app) { }); } + function softwareResourcesForNonprofits(req, res) { + res.render('resources/software-resources-for-nonprofits', { + title: 'Software Resources for Nonprofits' + }); + } + function codeOfConduct(req, res) { res.render('resources/code-of-conduct', { title: 'Code of Conduct' diff --git a/server/views/resources/software-resources-for-nonprofits.jade b/server/views/resources/software-resources-for-nonprofits.jade new file mode 100644 index 0000000000..470ecdf82a --- /dev/null +++ b/server/views/resources/software-resources-for-nonprofits.jade @@ -0,0 +1,78 @@ +extends ../layout +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. + h3 Skills-based Volunteer Organizations: + ul + li + a(href='http://givecamp.org/' target='_blank') Give Camp + li + a(href='http://www.volunteermatch.com' target='_blank') Volunteer Match.com + li + a(href='http://www.catchafire.org' target='_blank') Catchafire + li + a(href='http://anyonecanhaveawebsite.com' target='_blank') Anyone Can Have A Website + h3 Building a website: + ul + li + a(href='http://www.wix.com/' target='_blank') Wix + li + a(href='https://www.squarespace.com/' target='_blank') Square Space + li + a(href='https://wordpress.com/' target='_blank') WordPress + li + a(href='https://xprs.imcreator.com' target='_blank') Imcreator.com + li + a(href='or build it for free without writing any code' target='_blank') How to build a website without writing any code + h3 Donor and Volunteer Management Systems: + ul + li + a(href='http://causesignal.com' target='_blank') Cause Signal + li + a(href='https://www.thedatabank.com/' target='_blank') The Data Bank + li + a(href='http://www.donorsnap.com/' target='_blank') Donor Snap + li + a(href='http://www.donorperfect.com/' target='_blank') Donor Perfect + li + a(href='https://www.blackbaud.com/fundraising-crm/etapestry-donor-management' target='_blank') E Tapestry + li + a(href='http://www.z2systems.com' target='_blank') Z2 Systems + li + a(href='http://www.regpacks.com/volunteer-management' target='_blank') Reg Packs + li + a(href='http://sumac.com' target='_blank') Sumac + li + a(href='http://www.volgistics.com' target='_blank') Volgistics + h3 Inventory Management Systems: + ul + li + a(href='https://www.ordoro.com' target='_blank') Ordoro + li + a(href='http://www.unleashedsoftware.com' target='_blank') Unleashed Software + li + a(href='https://www.ezofficeinventory.com/industries/non-profits' target='_blank') EZ Office Inventory + h3 E-Learning platforms: + ul + li + a(href='http://www.dokeos.com' target='_blank') Dokeos + li + a(href='http://www.efrontlearning.net/' target='_blank') E Front Learning + li + a(href='https://moodle.org/' target='_blank') Moodle + li + a(href='https://sakaiproject.org/' target='_blank') Sakai Project + h3 Community Management: + ul + li + a(href='https://civicrm.org/' target='_blank') CiviCRM + li + a(href='http://tcmgr.com/' target='_blank') Total Community Manager + h3 Electronic Forms: + ul + li + a(href='http://www.google.com/forms' target='_blank') Google Forms + li + a(href='http://www.typeform.com' target='_blank') Typeform