aboutsummaryrefslogtreecommitdiff
path: root/views/index.jade
blob: d9e2d23a9f2924506407c4a62f5895910b74377d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
extends layout

block head
  link(rel='stylesheet', href='/stylesheets/style.css')
  link(rel='stylesheet', href='https://fonts.googleapis.com/icon?family=Material+Icons')

block content
  #data(style='display: none;')
    each user in users
      .data-user
        .data-type= user.type
        .data-value= user.value
        .data-index= user.index
        .data-other= user.other
        .data-isID= user.isID
      
  
  form#search
    .input-wrapper
      input(type='text', placeholder='Search', autofocus)
      button.material-icons.fav(tabindex='0', type='button') 
    .autocomplete-wrapper
      ul.autocomplete
  #week-selector
    #search-space-filler
    .week-wrapper
      input(type='button', value='Vorige')
      span.current Loading...
      input(type='button', value='Volgende')
  iframe(src='/hello')#schedule
  
  script(src='/javascripts/dest/main.js')