Add screencast to homepage
[oweals/finalsclub.git] / views / schools.jade
1 div.content
2         div.container1
3                 h1 Universities
4                 p
5                         | Please pardon our appearance as we actively develop this free and open source project to help students learn better.  This is where you can create courses or lectures and begin to take notes together for the following schools.  If you don't see your school here and would like to help raise the requisite interest to get started at your campus, please
6                         a(href="/contact") contact us.
7                         
8                 
9         
10                 - if ( schools.length > 0 )
11                         - each school in schools
12                                 div(class='school')
13                                         - if ( school.url )
14                                                 h2
15                                                         a( href = school.url, target = '_blank' )= school.name
16                                         - else
17                                                 h2= school.name
18                                         ul
19                                                 - if ( school.courses.length > 0 )
20                                                         - each course in school.courses
21                                                                 li
22                                                                         a( href = 'course/#{ course._id }' ) #{ course.displayName }
23
24                                                 - else
25                                                         li No courses found.
26                                         - if ( school.authorized )
27                                                 div
28                                                         span(class='sub_menu')
29                                                                 a( href = '/#{ school._id }/course/new' ) New Course
30                 - else
31                         p
32                                 | You do not belong to any school networks.