Skip to content
Snippets Groups Projects
index.html 2.66 KiB
Newer Older
Taddeüs Kroes's avatar
Taddeüs Kroes committed
<!doctype html>
<html>
    <head>
        <title>TV gids</title>
        <link href="style.css" type="text/css" rel="stylesheet">
    </head>
    <body>
        <div id="guide" class="guide">
            <div class="timeline">
                <div class="hour"><span class="label">00:00</span></div>
                <div class="hour"><span class="label">01:00</span></div>
                <div class="hour"><span class="label">02:00</span></div>
                <div class="hour"><span class="label">03:00</span></div>
                <div class="hour"><span class="label">04:00</span></div>
                <div class="hour"><span class="label">05:00</span></div>
                <div class="hour"><span class="label">06:00</span></div>
                <div class="hour"><span class="label">07:00</span></div>
                <div class="hour"><span class="label">08:00</span></div>
                <div class="hour"><span class="label">09:00</span></div>
                <div class="hour"><span class="label">10:00</span></div>
                <div class="hour"><span class="label">11:00</span></div>
                <div class="hour"><span class="label">12:00</span></div>
                <div class="hour"><span class="label">13:00</span></div>
                <div class="hour"><span class="label">14:00</span></div>
                <div class="hour"><span class="label">15:00</span></div>
                <div class="hour"><span class="label">16:00</span></div>
                <div class="hour"><span class="label">17:00</span></div>
                <div class="hour"><span class="label">18:00</span></div>
                <div class="hour"><span class="label">19:00</span></div>
                <div class="hour"><span class="label">20:00</span></div>
                <div class="hour"><span class="label">21:00</span></div>
                <div class="hour"><span class="label">22:00</span></div>
                <div class="hour"><span class="label">23:00</span></div>
            </div>
            <div class="indicator"></div>
            <div class="channels"></div>
        </div>

        <script src="lib/jquery-1.10.2.min.js" type="text/javascript"></script>
        <script src="lib/jquery.mousewheel.js" type="text/javascript"></script>
        <script src="lib/underscore-min.js" type="text/javascript"></script>
        <script src="lib/backbone-min.js" type="text/javascript"></script>
        <script src="lib/json2.js" type="text/javascript"></script>

        <script type="text/template" id="program-template">
            <div class="program">
                <%= title %>
            </div>
        </script>

        <script src="guide.js" type="text/javascript"></script>
    </body>
</html>