home.html
    
    ASCII text
        
            1
            {% extends "default.html" %} 
        
            2
            {% block title %}Home | gigadata{% endblock %} 
        
            3
            {% block content %} 
        
            4
                <x-frame style="--width: 768px"> 
        
            5
                    <h1>Gigadata</h1> 
        
            6
                    <p> 
        
            7
                        Free, contributed data for machine learning, data science, and research. 
        
            8
                    </p> 
        
            9
                    <ul> 
        
            10
                        <li>Easy for everyone to contribute</li> 
        
            11
                        <li>Powerful querying to save only what you need</li> 
        
            12
                        <li>Free to use for any purpose</li> 
        
            13
                    </ul> 
        
            14
                </x-frame> 
        
            15
            {% endblock %}