Teaching
August 16, 2021

Teaching Through An Emotional Lens

There is no doubt that schools need to be prioritizing social and emotional learning right now.

As we enter a third year of COVID-impacted teaching and learning, we must understand how this pandemic has affected our students. A recent GenYOUTH survey revealed that:

38% of students report that their intellectual well-being is less than good.
47% of students report that their emotional well-being is less than good.
50% of students report that their social well-being is less than good.

This upcoming school year is sure to have its own set of challenges that students will need to (somehow) find the energy to overcome (yet again). If we're going to help them achieve this, we need to focus on making social and emotional learning a meaningful part of our lessons.

An equal footing.

As educators, we show our students through our actions that their well-being is equally important to us (if not more so) than their academic achievement. We need to let them know that they mean more to us as individuals than just producers of grades and test scores.

To achieve this, we need to put social and emotional learning (SEL) on an equal footing with the academic learning that happens at school. In other words, we need to bake SEL into our teaching's DNA.

Approaching each lesson with intention.

If you've been following my work, you know that I start my lessons off with a "What? Why? How?" discussion:

What are we learning today?
Why are we learning that?
How will I know I have learned it?

These discussions aim to help students find meaning in the content we will explore and set clear targets for their learning. To support this, I use "What/Why/How" graphics displayed on the whiteboard in my gym. Underneath each graphic is a pocket sleeve in which I put in a printout of the lesson's "What/Why/How" focus.

These graphics have helped keep the lesson's meaning and focus front-and-centre as students go about their learning.

Today, I'd like to show you what I've created to help you take a similar approach to social and emotional learning.

Breaking down SEL

Social and emotional learning is defined as:

"The process of acquiring core competencies to recognize and manage emotions, set and achieve positive goals, appreciate the perspectives of others, establish and maintain positive relationships, make responsible decisions, and handle interpersonal situations constructively."

(Elias et al., 1997)

In CASEL's social and emotional learning framework, the organization breaks SEL down into five core competencies:

You can download my SEL Competency Graphics in the Shop!

• Self-awareness (intrapersonal competency)
• Self-management (intrapersonal competency)
• Social awareness (interpersonal competency)
• Relationship skills (interpersonal competency)
• Responsible decision making (cognitive competency)

By doing a little digging around, you'll discover that CASEL breaks these competencies down further into SEL Capacities:

These are just a few of the capacities that are packed into CASEL's SEL competencies.

As I learned more about these capacities, I started to ask myself how to use them as emotional lenses for my teaching. Doing so could help me make SEL a meaningful part of every lesson I teach.

Here's what I came up with:

Introducing the Emotional Lens

I created a letter-sized, printable card for each SEL capacity that could easily be added to a pocket sleeve (just like those I use for my What/Why/How). In total, there are 40 cards and each card showcases an "I can" statement in student-friendly language that is aligned to the capacity it is associated with.

The SEL Capacity Cards are included in the Emotional Lens Pack, which you can download in the Shop!

With these cards made, I then created an "Emotional Lens" graphic that would become a part of my "What, Why, How" graphics collection. The idea here is that each lesson would be introduced with:

What are we learning today?
Why are we learning that?
How will I know I have learned it?
• Which SEL capacity will we use as a lens for our learning today?

The What/Why/How/Lens graphics are included in the Emotional Lens Pack, which you can download in the Shop!

By adding this emotional lens, we're reinforcing the idea that learning is an emotional task, and we can intentionally develop social and emotional skills over time.

Baking SEL into your lessons

Let me show you what this can look like in action:

Let's say your grade six students are in the middle of an invasion games unit. In this lesson, they will be focusing on defensive position and paying particular attention to positioning themselves between the goal and the player they are guarding and exploring the concept of help defence.

Your "What/Why/How" for this lesson make look like this:

As the teacher, you decide that the SEL Capacity you want to bring your students' attention to is "Self-Efficacy" (which is part of the "Self-Awareness" competency). This decision came from the fact that - in the past - you have noticed students who are less engaged in this aspect of the unit because they claim they a "just not good at these kinds of games."

This emotional lens now becomes a layer to the different discussions and teachable moments that arise in class.

This SEL layer can include anything from:

• A pre-activity discussion on what self-efficacy is and how it makes us feel.

Drawing attention to the emotional response that comes from experiencing success and knowing how to recreate that success.

• Inviting students to discuss actionable tactics that can help improve one's self-efficacy towards a task.

• Discussing how we can transfer the social and emotional experiences and learning from the lesson outside of physical education class.

Again, the goal is to help make this SEL focus a part of every aspect of the class. In doing so, we're helping our students see that their social and emotional development is as valuable as their academic development.

Final thoughts and questions

Getting comfortable with using an emotional lens in your teaching will take time and practice. My suggestion is to start small and pick lessons where the SEL connection is obvious. See how many "touchpoint" moments you can create by drawing your students' attention back to the SEL capacity they are exploring as they go about their learning in physical education. Over time, you'll grow more comfortable with selecting appropriate lenses for your lessons, identifying teachable SEL moments, and fitting social and emotional learning discussions into your teaching in a natural way.

If you'd like to try these resources out in your teaching, here are links to them in the Shop:

🛡 SEL Competency Graphics

🔍 SEL Emotional Lens Pack

If you have any questions, hit me up on Twitter! As always, thanks for reading and happy teaching!

Joey Feith
Joey Feith is a physical education teacher based out of Nova Scotia and the founder of ThePhysicalEducator.com.
View all posts

Similar posts

Newsletter

Sign up and never miss another blog post!

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// Blog CTA Click Tracking for GA4 // Add this script to your Webflow site's custom code section // Function to track CTA clicks function trackBlogCTA(ctaLocation, ctaText, destinationUrl) { // Send event to GA4 if (typeof gtag !== 'undefined') { gtag('event', 'blog_cta_click', { 'event_category': 'Blog CTA', 'event_label': ctaText, 'cta_location': ctaLocation, // 'top', 'middle', 'bottom', 'inline' 'blog_post': window.location.pathname, 'destination_url': destinationUrl }); console.log('Blog CTA tracked:', { location: ctaLocation, text: ctaText, post: window.location.pathname }); } } // Automatically track all CTA clicks on blog posts document.addEventListener('DOMContentLoaded', function() { // Only run on blog post pages if (!window.location.pathname.includes('/blog/')) return; // Find all CTA links (adjust selectors based on your site structure) const ctaSelectors = [ 'a[href*="/membership"]', 'a[href*="/join"]', 'a[href*="physedu"]', 'a.cta-button', // If you have a specific class 'a.button-primary' // Adjust to match your button classes ]; // Combine all selectors const allCTALinks = document.querySelectorAll(ctaSelectors.join(', ')); allCTALinks.forEach(function(link) { link.addEventListener('click', function(e) { // Determine CTA location based on position on page const rect = link.getBoundingClientRect(); const scrollPos = window.scrollY + rect.top; const pageHeight = document.body.scrollHeight; const relativePos = scrollPos / pageHeight; let ctaLocation = 'middle'; if (relativePos < 0.25) ctaLocation = 'top'; else if (relativePos > 0.75) ctaLocation = 'bottom'; // Get CTA text const ctaText = link.textContent.trim() || link.getAttribute('aria-label') || 'Unknown'; // Get destination URL const destinationUrl = link.getAttribute('href'); // Track the click trackBlogCTA(ctaLocation, ctaText, destinationUrl); }); }); console.log('Blog CTA tracking initialized. Found ' + allCTALinks.length + ' CTA links.'); }); // Alternative: Manual tracking function you can call from specific CTAs // Usage: window.trackBlogCTA = trackBlogCTA; // #PhysEdU Membership Conversion Tracking // Add this to Webflow Project Settings > Custom Code > Footer Code // Track when someone clicks to join #PhysEdU (starts checkout) document.addEventListener('DOMContentLoaded', function() { // Find all links to Circle checkout pages const checkoutLinks = document.querySelectorAll('a[href*="physedu.circle.so/checkout"]'); checkoutLinks.forEach(function(link) { link.addEventListener('click', function(e) { // Determine which tier based on URL let tier = 'unknown'; let value = 0; if (link.href.includes('/checkout/community')) { tier = 'community'; value = 10; } else if (link.href.includes('/checkout/plus')) { tier = 'plus'; value = 49; } else if (link.href.includes('/checkout/pro')) { tier = 'pro'; value = 99; } // Track the checkout initiation if (typeof gtag !== 'undefined') { gtag('event', 'begin_checkout', { 'event_category': 'PhysEdU Membership', 'event_label': tier, 'value': value, 'currency': 'USD', 'items': [{ 'item_id': 'physedu_' + tier, 'item_name': '#PhysEdU ' + tier.charAt(0).toUpperCase() + tier.slice(1), 'price': value, 'quantity': 1 }] }); console.log('Tracked: Begin checkout for #PhysEdU ' + tier); } }); }); console.log('PhysEdU checkout tracking initialized. Found ' + checkoutLinks.length + ' checkout links.'); }); // Track successful membership signup (when they return from Circle) // This checks if they're landing on a page after successful Circle checkout window.addEventListener('load', function() { // Check if URL contains success parameters // Circle typically adds parameters like ?success=true or redirects to a specific page const urlParams = new URLSearchParams(window.location.search); // Check for common success indicators const hasSuccess = urlParams.get('success') === 'true' || urlParams.get('checkout') === 'success' || urlParams.get('member') === 'new' || document.referrer.includes('circle.so/checkout'); // Also check if landing on a "welcome" or "success" page const isWelcomePage = window.location.pathname.includes('/welcome') || window.location.pathname.includes('/success') || window.location.pathname.includes('/getting-started'); if (hasSuccess || (isWelcomePage && document.referrer.includes('circle.so'))) { // Try to determine tier from URL or page content let tier = 'community'; // default assumption let value = 10; // Check URL for tier indicators if (urlParams.get('tier') === 'plus' || window.location.href.includes('plus')) { tier = 'plus'; value = 49; } else if (urlParams.get('tier') === 'pro' || window.location.href.includes('pro')) { tier = 'pro'; value = 99; } // Fire the conversion event if (typeof gtag !== 'undefined') { gtag('event', 'physedu_signup', { 'event_category': 'PhysEdU Membership', 'event_label': tier, 'value': value, 'currency': 'USD', 'transaction_id': 'physedu_' + Date.now(), // Simple unique ID 'items': [{ 'item_id': 'physedu_' + tier, 'item_name': '#PhysEdU ' + tier.charAt(0).toUpperCase() + tier.slice(1), 'price': value, 'quantity': 1 }] }); // Also fire a generic conversion event gtag('event', 'conversion', { 'send_to': 'AW-CONVERSION-ID/physedu_signup', // Update with your conversion ID if using Google Ads 'value': value, 'currency': 'USD', 'transaction_id': 'physedu_' + Date.now() }); console.log('Tracked: PhysEdU signup conversion - ' + tier + ' tier ($' + value + ')'); // Set a flag so we don't track this twice if they refresh sessionStorage.setItem('physedu_signup_tracked', 'true'); } } });