<?php require 'header.php' ?>
<section class="row">
        <article class="col-md-10 col-md-offset-1">
            <h1 class="intro">Data Schemas and Applications</h1>
            <br>
        </article>
    </section>
</header>
<main>
    <section class="row">

        <article class="col-md-6 col-md-offset-3 projects">
            <a href="dsa/workshop_1/calculator.php">
                    <div class="col-md-4">
                        <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                    </div>
                    <div class="col-md-8">
                        <h3 class="title">Calculator</h3>
                        <p>A calculator built with php. User inputs data into form and get's processed by a scripts usign a GET method.</p>
                </div>
                </a>
        </article>

        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_2/quote_v3.php">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">Quote of the Day</h3>
                    <p>Retrieves text input from a CSV file and randomly display one of them.</p>
                </div>
                </a>
        </article>
        
        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_3/quote_input.php">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">Quote Input</h3>
                    <p>Adds new quotes to "quotes.dat" inputed throught a form.</p>
                </div>
                </a>
        </article>
        
        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_4/weather_to_rss3.php">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">Weather RSS</h3>
                    <p>Retrieves current weather from url, if clientraw.txt is available.</p>
                </div>
                </a>
        </article>
        
        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_4/weather_to_windchart.php">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">Weather Wind Chart</h3>
                    <p>Uses weather values to build a windspeed chart.</p>
                </div>
                </a>
        </article>
        
        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_5/get_tweets.php">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">Geocoded Tweets</h3>
                    <p>Retrieves tweets from Lisbon, using Twitter API.</p>
                </div>
                </a>
        </article>
        
        <article class="col-md-6 col-md-offset-3 projects">
                <a href="dsa/workshop_6/">
                <div class="col-md-4">
                    <img src="images/Reading-Icon.png"  class="img-rounded img-responsive center-block">
                </div>
                <div class="col-md-8">
                    <h3 class="title">QSEE Quill Project</h3>
                    <p>File that includes diagram of tables and relations between them in a database.</p>
                </div>
                </a>
        </article>
    </section>
    <br>
    <?php require 'footer.php' ?>
