<!DOCTYPE html>
<html lang='en'><meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>The Couch Gymnast</title>







<link rel="stylesheet" href="https://thecouchgymnast.com/css/eureka-built.min.css">




<script defer src="https://thecouchgymnast.com/js/eureka.min.js"></script>


<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload"
    href="https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Noto+Serif+SC:wght@400;600;700&display=swap"
    as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.1.0/build/styles/solarized-light.min.css" as="style"
    onload="this.onload=null;this.rel='stylesheet'">
<script defer src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.1.0/build/highlight.min.js"></script>
<script async src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.14.0/js/all.min.js" integrity="sha256-uNYoXefWRqv&#43;PsIF/OflNmwtKM4lStn9yrz2gVl6ymo="
    crossorigin="anonymous"></script>




<script defer data-domain="thecouchgymnast.com" src="https://analytics.thecouchgymnast.com/js/script.js"></script>




<link rel="icon" type="image/png" sizes="32x32" href="https://thecouchgymnast.com/images/icon_hu0d6eb2020bcfc35566605a2b007be5a0_345330_32x32_fill_box_center_3.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://thecouchgymnast.com/images/icon_hu0d6eb2020bcfc35566605a2b007be5a0_345330_180x180_fill_box_center_3.png">


<meta name="description"
    content="A website about the practice, performance and people of women&#39;s artistic gymnastics.">




<meta property="og:title" content="The Couch Gymnast" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://thecouchgymnast.com/" />





<meta property="og:description" content="A website about the practice, performance and people of women&#39;s artistic gymnastics." />





<meta property="og:locale" content="en" />




<meta property="og:site_name" content="The Couch Gymnast" />






<meta property="og:updated_time" content="2019-09-01T15:56:40&#43;00:00" />



<meta property="article:section" content="" />




<link rel="alternate" type="application/rss+xml" href="https://thecouchgymnast.com/index.xml" title="The Couch Gymnast" />
<body class="flex flex-col min-h-screen">
    <header class="flex items-center fixed w-full min-h-16 z-50 bg-secondary-bg shadow-sm">
        <div class="container mx-auto">
            <div class="max-w-screen-xl"><script>
    let storageColorScheme = localStorage.getItem("lightDarkMode")
    if (((storageColorScheme == 'Auto' || storageColorScheme == null) && window.matchMedia("(prefers-color-scheme: dark)").matches)
        || storageColorScheme == "Dark") {
        document.getElementsByTagName('html')[0].classList.add('dark')
    } else if (storageColorScheme == "Light") {
        document.getElementsByTagName('html')[0].classList.remove('dark')
    }
</script>
<nav class="flex items-center justify-between flex-wrap p-4">
    <a href="https://thecouchgymnast.com/" class="mr-6 text-primary-text text-xl font-bold">The Couch Gymnast</a>
    <button id="navbar-btn" class="md:hidden flex items-center px-3 py-2" aria-label="Open Navbar">
        <i class="fas fa-bars"></i>
    </button>

    <div id="target"
        class="hidden block md:flex md:flex-grow md:justify-between md:items-center w-full md:w-auto text-primary-text z-20">
        <div class="text-sm md:flex-grow pb-4 md:pb-0 border-b md:border-b-0" id="current-url"
            currenturl="https://thecouchgymnast.com/">
            
            <a href="/posts/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">Posts</a>
            
            <a href="/categories/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">Categories</a>
            
            <a href="/archive/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">Archive</a>
            
            <a href="/tags/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">Tags</a>
            
            <a href="/authors/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">TheTeam</a>
            
            <a href="/about/"
                class="block mt-4 md:inline-block md:mt-0 hover:text-eureka mr-4 main-a">About</a>
            
        </div>

        <div class="flex">
            <div class="relative pt-4 md:pt-0">
                <div class="cursor-pointer hover:text-eureka" id="lightDarkMode">
                    <i class="fas fa-adjust"></i>
                </div>
                <div class="fixed hidden inset-0 opacity-0 h-full w-full cursor-default z-30" id="is-open">
                </div>
                <div class="absolute flex flex-col left-0 md:left-auto right-auto md:right-0 hidden bg-secondary-bg w-48 rounded py-2 border border-tertiary-bg cursor-pointer z-40"
                    id='lightDarkOptions'>
                    <span class="px-4 py-1 hover:text-eureka">Light</span>
                    <span class="px-4 py-1 hover:text-eureka">Dark</span>
                    <span class="px-4 py-1 hover:text-eureka">Auto</span>
                </div>
            </div>

            
        </div>
    </div>

    <div class="fixed hidden inset-0 opacity-0 h-full w-full cursor-default z-0" id="is-open-mobile">
    </div>

</nav>
<script>
    document.addEventListener('DOMContentLoaded', () => {
        getcolorscheme();
        switchBurger();
        
    });

    let currenturl = document.getElementById('current-url').getAttribute('currenturl')
        if (currenturl.length > 1) {
            currenturl = currenturl.substr(0, currenturl.length - 1)
        }

        sessionStorage.setItem("mainKey", currenturl)

        let elements = document.getElementsByClassName('main-a');
        for (let i in elements) {
            if (typeof elements[i] === "object") {
                let elementurl = elements[i].getAttribute('href')
                if (elementurl.length > 1 && elementurl.charAt(elementurl.length - 1) == '/') {
                    elementurl = elementurl.substr(0, elementurl.length - 1)
                }
                if (elementurl == sessionStorage.getItem("mainKey")) {
                    elements[i].classList.add('text-eureka')
                } else {
                    elements[i].classList.remove('text-eureka')
                }
            }
        }
</script></div>
        </div>
    </header>

    <main class="flex-grow pt-16">
        

<div class="w-full bg-secondary-bg py-8">
    <div class="container mx-auto">
        <div class="max-w-screen-xl flex justify-center">
            <img src="/images/banner.jpg" alt="The Couch Gymnast" class="max-w-full h-auto">
        </div>
    </div>
</div>


<div class="container mx-auto">
    <div class="max-w-screen-xl pt-12 md:px-4 xl:px-8">
        
        
<div class="mx-4 xl:mx-16">
    <div class="flex flex-row items-center justify-between">
        <h2 class=" font-bold text-3xl my-4">Latest</h2>
    </div>
    <div class="masonry grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-8">
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2019/09/collageworldsapart2015to1979-1-200x140.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2019/09/01/in-preparation-for-worlds-2019-a-retrospective/" class="hover:text-eureka">A World Apart- A Retrospective</a>
        </div>
        <div class="">The List will journey back to the Worlds of previous quads.  What did we learn about gymnastics from these competitions?</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2019-09-01</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>8 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/the-list/" class="hover:text-eureka">The List</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2019/04/2015-Worlds-UB-final-podium-tie.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2019/04/18/the-list-fit-to-be-tied/" class="hover:text-eureka">The List: Fit to be Tied</a>
        </div>
        <div class="">Ties in gymnastics - some controversial, sometimes unfortunate, often heart-breaking.</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2019-04-18</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>6 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/the-list/" class="hover:text-eureka">The List</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2019/03/AmelieMorgan2019British.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2019/03/20/2019british-event-finals-photo-gallery/" class="hover:text-eureka">#2019British: Photo Gallery</a>
        </div>
        <div class="">Find here a beautiful photo gallery submitted by photographer Myriam Cawston:</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2019-03-20</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>1 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/competitions/" class="hover:text-eureka">Competitions</a>
        
        
        <span>, </span>
        <a href="https://thecouchgymnast.com/categories/photo-gallery/" class="hover:text-eureka">Photo Gallery</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/12/Unterratedinthirtime-21122018.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/12/24/the-list-underrated-in-their-time/" class="hover:text-eureka">The List: Underrated in their Time</a>
        </div>
        <div class="">They worked hard, under the radar, but helped the sport grow and expand.</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-12-24</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>6 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/the-list/" class="hover:text-eureka">The List</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/11/Thelist_before-27112018.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/11/27/the-list-before-the-trend/" class="hover:text-eureka">The List: Before the Trend</a>
        </div>
        <div class="">Find here a List of &amp;ldquo;common&amp;rdquo; skills done  before everybody else started doing them.</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-11-27</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>4 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/the-list/" class="hover:text-eureka">The List</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/11/doha-2018-event-finals-report-3-nov-2018.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/11/03/2018-worlds-event-finals-report-and-results/" class="hover:text-eureka">2018 Worlds: Event Finals Report and Results</a>
        </div>
        <div class="">Find here a report and results for the 2018 Worlds WAG event finals:</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-11-03</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>9 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/competitions/" class="hover:text-eureka">Competitions</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/11/Worlds-2018-all-around-final-1.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/11/01/2018-worlds-all-around/" class="hover:text-eureka">2018 Worlds: All Around Report and Results</a>
        </div>
        <div class="">Find here a report and results for the 2018 Worlds WAG all around final.</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-11-01</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>4 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/competitions/" class="hover:text-eureka">Competitions</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/10/2018-Doha-team-final-30-Oct-2018.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/10/30/2018-worlds-team-final-report-and-results/" class="hover:text-eureka">2018 Worlds: Team Final Report and Results</a>
        </div>
        <div class="">Find here a report and results for the 2018 Worlds WAG team final:</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-10-30</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>7 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/competitions/" class="hover:text-eureka">Competitions</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
        <div class="item">
            <div class="grid-content">
                <div class="bg-secondary-bg rounded overflow-hidden hover:shadow-lg transition ease-in-out duration-200">
    
    
    <img src="https://thecouchgymnast.com/images/2018/10/2018-Worlds-subdiv-10-and-11-28102018.jpg" class="w-full" alt="Featured Image">
    
    <div class="px-6 pt-6">
        <div class="font-bold text-xl text-primary-text mb-2">
            <a href="https://thecouchgymnast.com/2018/10/28/2018-worlds-qualifications-subdiv-10-and-11/" class="hover:text-eureka">2018 Worlds Qualifications – Subdiv 10 and 11</a>
        </div>
        <div class="">Subdivision 10 &amp;amp; 11 report and results: Spain, Mexico, Switzerland, Greece, CZE, SLO, EGY, TPE</div>
    </div>
    <div class="px-6 pb-2">
        <div class="flex flex-wrap flex-row items-center my-2 text-tertiary-text">
    <div class="mr-6 my-2">
        <i class="fas fa-calendar mr-1"></i>
        <span>2018-10-28</span>
    </div>
    <div class="mr-6 my-2">
        <i class="fas fa-clock mr-1"></i>
        <span>9 min read</span>
    </div>
    
    
    <div class="mr-6 my-2">
        <i class="fas fa-folder mr-1"></i>
        
        <a href="https://thecouchgymnast.com/categories/competitions/" class="hover:text-eureka">Competitions</a>
        
    </div>
    

    
</div>
    </div>
</div>
            </div>
        </div>
        
    </div>
</div>
<script>
    document.addEventListener('DOMContentLoaded', () => {
        enableMasonry()
    })
</script>

    </div>
</div>

        
    </main>

    <footer>
        <div class="container mx-auto">
            <div class="max-w-screen-xl"><footer class="w-full text-center p-6 pin-b text-sm text-tertiary-text">
    <p> Powered by the <a href="https://github.com/wangchucheng/hugo-eureka" class="hover:text-eureka">Eureka</a> theme for <a href="https://gohugo.io" class="hover:text-eureka">Hugo</a></p>
</footer></div>
        </div>
    </footer>
</body>

</html>