{{#> main currentPage="release-notes"}}

<article class="release-notes">
    <!-- Page Header -->
    <header class="page-header">
        <h1 class="page-title">{{#if version}}Release Notes - {{version}}{{else}}Release Notes{{/if}}</h1>
        <p class="page-subtitle">
            TouchDesigner version history and update information
        </p>
    </header>
    
    <!-- Breadcrumbs -->
    {{#if breadcrumbs}}
    <nav class="breadcrumbs">
        {{#each breadcrumbs}}
            {{#if @last}}
                <span class="breadcrumb-item current">{{text}}</span>
            {{else}}
                <a href="{{url}}" class="breadcrumb-item">{{text}}</a>
                <span class="breadcrumb-separator">/</span>
            {{/if}}
        {{/each}}
    </nav>
    {{/if}}
    
    <!-- Content Section -->
    <section class="release-notes-content">
        <div class="notice-box">
            <div class="notice-icon">
                <svg viewBox="0 0 24 24">
                    <path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>
                </svg>
            </div>
            <div class="notice-content">
                <h3>Release Notes Information</h3>
                <p>{{message}}</p>
                <p>For the most up-to-date release notes and version information, please visit the official TouchDesigner documentation.</p>
            </div>
        </div>
        
        <!-- Version Links -->
        <section class="version-links">
            <h2 class="section-title">Recent Versions</h2>
            
            <div class="versions-list">
                <a href="/Release_Notes/2023.11000" class="version-card">
                    <h3>TouchDesigner 2023.11000 Series</h3>
                    <p>Latest stable release with new features and improvements</p>
                </a>
                
                <a href="/Release_Notes/2022.35320" class="version-card">
                    <h3>TouchDesigner 2022.35320 Series</h3>
                    <p>Previous stable release</p>
                </a>
                
                <a href="/Release_Notes/099" class="version-card">
                    <h3>TouchDesigner 099 Legacy</h3>
                    <p>Legacy version documentation</p>
                </a>
            </div>
        </section>
        
        <!-- External Links -->
        <section class="external-links">
            <h2 class="section-title">Official Resources</h2>
            
            <div class="links-grid">
                <a href="https://docs.derivative.ca/Release_Notes" class="link-card" target="_blank">
                    <div class="link-icon">
                        <svg viewBox="0 0 24 24">
                            <path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/>
                        </svg>
                    </div>
                    <h3>Official Release Notes</h3>
                    <p>View complete release notes on docs.derivative.ca</p>
                </a>
                
                <a href="https://derivative.ca/download" class="link-card" target="_blank">
                    <div class="link-icon">
                        <svg viewBox="0 0 24 24">
                            <path d="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z"/>
                        </svg>
                    </div>
                    <h3>Download TouchDesigner</h3>
                    <p>Get the latest version from derivative.ca</p>
                </a>
                
                <a href="https://forum.derivative.ca/c/release-notes" class="link-card" target="_blank">
                    <div class="link-icon">
                        <svg viewBox="0 0 24 24">
                            <path d="M17,12V3A1,1 0 0,0 16,2H3A1,1 0 0,0 2,3V17L6,13H16A1,1 0 0,0 17,12M21,6H19V15H6V17A1,1 0 0,0 7,18H18L22,22V7A1,1 0 0,0 21,6Z"/>
                        </svg>
                    </div>
                    <h3>Community Discussion</h3>
                    <p>Discuss updates in the TouchDesigner forum</p>
                </a>
                
                <a href="https://docs.derivative.ca/Category:Release_Notes" class="link-card" target="_blank">
                    <div class="link-icon">
                        <svg viewBox="0 0 24 24">
                            <path d="M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM7 15h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/>
                        </svg>
                    </div>
                    <h3>Release Notes Archive</h3>
                    <p>Browse all historical release notes</p>
                </a>
            </div>
        </section>
        
        <!-- What's New Section -->
        <section class="whats-new">
            <h2 class="section-title">What's New in TouchDesigner</h2>
            
            <div class="features-grid">
                <div class="feature-card">
                    <h3>Enhanced Performance</h3>
                    <p>Improved GPU utilization and multi-threading support for better real-time performance</p>
                </div>
                
                <div class="feature-card">
                    <h3>New Operators</h3>
                    <p>Regular additions of new operators expanding creative possibilities</p>
                </div>
                
                <div class="feature-card">
                    <h3>Python Updates</h3>
                    <p>Updated Python version and enhanced scripting capabilities</p>
                </div>
                
                <div class="feature-card">
                    <h3>UI Improvements</h3>
                    <p>Refined user interface and workflow enhancements</p>
                </div>
                
                <div class="feature-card">
                    <h3>Bug Fixes</h3>
                    <p>Continuous improvements to stability and reliability</p>
                </div>
                
                <div class="feature-card">
                    <h3>Platform Support</h3>
                    <p>Extended support for various hardware and operating systems</p>
                </div>
            </div>
        </section>
    </section>
</article>

{{/main}}