def get_homepage():
    """List all students and all projects on our homepage."""

    list_of_students = hackbright.list_all_students()
    list_of_projects = hackbright.list_all_projects()

    return render_template("index.html", list_of_students=list_of_students, list_of_projects=list_of_projects)
def home_page():
    """Home page displaying a list of all students and a list of all projects, consisting of links."""

    student_list = hackbright.list_all_students()
    project_list = hackbright.list_all_projects()
    return render_template("index.html",
                           student_list=student_list,
                           project_list=project_list)
def get_homepage():
    """Displays homepage with list of all students and all projects"""
    projects = hackbright.list_all_projects()
    student_data = hackbright.list_all_student_data()

    return render_template("index.html", projects=projects, student_data=student_data)