freeCodeCamp/views/curriculum/curriculum.jade

38 lines
934 B
Plaintext
Raw Normal View History

2014-10-13 21:14:51 +00:00
extends ../layout
block content
.page-header
2014-10-14 01:00:37 +00:00
h3 Your Curriculum
h1= title
2014-10-16 23:18:26 +00:00
ul
each course in courses
li= course.name
2014-10-17 01:04:32 +00:00
script(type="text/javascript") var username = '#{username}';
2014-10-14 04:38:10 +00:00
2014-10-16 23:18:26 +00:00
//ul.pages
// li.chat.page
// div.chatArea
// ul.messages
// input.inputMessage(placeholder='Type here...')
// li.login.page
// div.form
// h3.title What's your nickname?
// input.usernameInput(type='text', maxlength='14')
2014-10-16 16:07:06 +00:00
// for course in courses
// p #{course.name}
2014-10-14 04:38:10 +00:00
// .row
// .col-sm-6
// h3 Your Curriculum
// .col-sm-6
// .chat
// .chat-messages
// .chat-input.row
// .col-sm-3
// input.usernameInput(placeholder='Nickanem', type='text', maxlength='14')
// .col-sm-9
// input.inputMessage(placeholder='Type here...')
2014-10-16 23:18:26 +00:00
//