Example #1
0
            <div>
                <p>
                    <label>Search tbmd.com:
                        <input type="text" name="query" id="query" list="search_results">
                        <datalist id="search_results"></datalist>
                        <input type="button" id="btnSearch" value="Search!">
                    </label>
                </p>
            </div>
        </section>
    </header>
    <section class="content">
        <section id="upcoming_movies">
            <h2 class="aggregate">Upcoming Movies</h2>
            <?php 
echo $view->upcomingMoviesAsBlock();
?>
        </section>
        <section id="recent_reviews">
            <h2 class="aggregate">Recent Reviews</h2>
            <?php 
echo $view->recentReviewsAsBlock();
?>
        </section>
        <section id="top_rated_movies">
            <h2 class="aggregate">Top Rated Movies</h2>
            <?php 
echo $view->highestRatedMoviesAsBlock();
?>
        </section>
    </section>