/* alt tag added for signposts image per accessibility audit finding, 2020 - HDR. */ 0 } class="custom-cardset col-lg-4 col-md-4 col-sm-12 card_Long cardBg_1 wow fadeInUp" style="background-image:url('{ articles[0].get_image }');" href="/s/c/{ articles[0].slug }">

{ articles[0].kind }

{ articles[0].title }

1 } class="custom-cardset col-lg-4 col-md-4 col-sm-12 cardBg_2 wow fadeInUp" style="background-image:url('{ articles[1].get_image }');" href="/s/c/{ articles[1].slug }">

{ articles[1].kind }

{ articles[1].title }

Events coming up

Événements à venir

{event[0].title}

{pretty_date(event[0].when)}

{event[1].title}

{pretty_date(event[1].when)}

Click here to see more events.

Cliquez ici pour voir plus d’opportunités de financement.

PATHWAYS

Where do you go from here?

Plan your next step with our simple, straightforward guides to business in Canada.

Les chemins d'accès

Où allez-vous à partir d'ici?

Planifiez votre prochaine étape avec nos guides simplifiés sur les affaires au Canada.

Funding Opportunities

Opportunités de financement

{funding[0].title}

{pretty_date(funding[0].when)}

{funding[1].title}

{pretty_date(funding[1].when)}

Click here to see more Funding Opportunities.

Cliquez ici pour voir plus d’opportunités de financement.

JOIN US

Do your products or services support women in business?

Check to see if your organization is listed here.

Rejoignez-nous

Vos produits ou services soutiennent-ils les femmes dans les affaires?

Vérifiez si votre organisation est répertoriée ici.

NEWSLETTER

Weekly updates. Especially for you.

Receive stories of womens' business struggles and success, advice and guides.

Infolettre

Mises à jour hebdomadaires. Spécialement pour toi.

Recevez des récits de luttes commerciales et de succès de femmes, des conseils et des guides.

Featured Content

Contenu en vedette

{ featured_content.kind }

{ featured_content.title }

2} class="infinite-scroll-cards custom-cardset col-lg-4 col-md-4 col-sm-12 cardBg_4 wow fadeInUp" style="background-image:url('{ article.get_image }');" href="/s/c/{ article.slug }">

{ article.kind }

{ article.title }

var controller = this; controller.articles = []; controller.default = false; controller.current_language = opts.current_language; var _pending = false; //Fetch most recent event fetch(EVENTS_API_URL + '?latest=true') .then(function(response) { return response.json(); }) .then(function(data) { controller.update({ event: data.results }); }); //Fetch Featured content fetch(API_URL + '?featured=true') .then(function(response) { return response.json(); }) .then(function(data) { controller.update({ featured_contents: data.results }); }); fetch(EVENTS_API_URL + '?kind=FUNDING&latest=true') .then(function(response) { return response.json(); }) .then(function(data) { controller.update({ funding: data.results }); }); results_manager.on("update",function(data){ controller.update({ articles: results_manager.page > 1 ? controller.articles.concat(data.results) : data.results }); _pending = false; }); results_manager.on('search', function(filters){ controller.update({ default: !Object.keys(filters).length }); var tags_parts=(window.location+'').split("tags="); if (tags_parts.length > 1) { controller.tag_title = tags_parts[1].replace(/%20/gi, " "); } }); controller.on('mount', function() { window.addEventListener('scroll', controller.handleScroll); window.addEventListener('resize', controller.handleScroll); return controller.update(); }); controller.on('unmount', function() { window.removeEventListener('scroll', controller.handleScroll); return window.removeEventListener('resize', controller.handleScroll); }); this.handleScroll = function(e) { if (controller.reachedEndOfElement() &! _pending && results_manager.has_next_page) { _pending=true; results_manager.trigger('next_page') } } this.reachedEndOfElement = function() { var cards = document.getElementsByClassName('infinite-scroll-cards') var last_element = cards[cards.length - 1]; //If last_element is not defined, it means we have run out of articles if(!last_element){ return false; } else { var pos = last_element.getBoundingClientRect(); var winheight = window.innerHeight || document.documentElement.clientHeight; return (winheight - pos.bottom) >= 0; } };