2014-12-18 01:26:23 -05:00
|
|
|
if docs.length === 1
|
|
|
|
if showVideo
|
2014-12-18 02:55:11 -05:00
|
|
|
h3(id='help-video-heading', data-i18n="game_menu.guide_video_tutorial")
|
2015-01-30 13:48:49 -05:00
|
|
|
if videoLocked
|
|
|
|
p(data-i18n="subscribe.unlock_help_videos") Subscribe to unlock all video tutorials.
|
|
|
|
button.start-subscription-button.btn.btn-lg.btn-success(data-i18n="subscribe.subscribe_title") Subscribe
|
|
|
|
else
|
|
|
|
div(id="help-video-player")
|
2014-12-18 02:55:11 -05:00
|
|
|
h3(data-i18n="game_menu.guide_tips")
|
2014-12-18 01:26:23 -05:00
|
|
|
div
|
|
|
|
!= docs[0].html
|
2015-03-05 11:58:11 -05:00
|
|
|
|
2015-03-23 18:26:44 -04:00
|
|
|
if (!me.isPremium() || me.isAdmin()) && (me.get('preferredLanguage') || 'en-US').substr(0, 2) == 'en'
|
2015-03-05 11:58:11 -05:00
|
|
|
hr
|
|
|
|
h3 Want more programming lessons?
|
|
|
|
ul
|
|
|
|
li
|
2015-04-07 12:25:42 -04:00
|
|
|
strong
|
|
|
|
a(class="resource-link", data-resource="breakout-mentors", href='http://breakoutmentors.com/?referral=codecombat') Breakout Mentors
|
|
|
|
| : Personalized code mentoring for kids from Stanford and UC Berkeley mentors, online or in person.
|
|
|
|
li
|
|
|
|
strong
|
|
|
|
a(class="resource-link", data-resource="ostraining", href='https://www.ostraining.com/codecombat/') OSTraining
|
|
|
|
| : Watch over 2600 videos on how to make great websites with Wordpress, Drupal, Joomla, and more.
|
|
|
|
li
|
2015-03-05 11:58:11 -05:00
|
|
|
strong
|
|
|
|
a(class="resource-link", data-resource="one-month", href='http://mbsy.co/bVRtZ') One Month
|
|
|
|
| : Learn any tech skill in 30 days with just 15 minutes a day.
|
|
|
|
li
|
|
|
|
strong
|
|
|
|
a(class="resource-link", data-resource="code-school", href='http://mbsy.co/bVRsR') Code School
|
2015-03-09 19:32:29 -04:00
|
|
|
| : Learn web technologies with video lessons, coding challenges, and screencasts.
|
2015-03-05 11:58:11 -05:00
|
|
|
li
|
|
|
|
strong
|
2015-03-09 19:32:29 -04:00
|
|
|
a(class="resource-link", data-resource="learnable", href='http://shrsl.com/?~80my') Learnable
|
|
|
|
| : Learn web design, HTML, CSS, and so much more.
|
|
|
|
li
|
|
|
|
strong
|
|
|
|
a(class="resource-link", data-resource="pluralsight", href='http://shrsl.com/?~81i5') Pluralsight
|
|
|
|
| : Unlock new tech skills with over 3000 online courses.
|
2014-12-18 01:26:23 -05:00
|
|
|
else
|
|
|
|
ul.nav.nav-tabs
|
|
|
|
for doc in docs
|
|
|
|
li
|
|
|
|
a(data-target="#docs_tab_#{doc.slug}", data-toggle="tab") #{doc.name}
|
|
|
|
div.tab-content
|
|
|
|
for doc in docs
|
|
|
|
div.tab-pane(id="docs_tab_#{doc.slug}")!= doc.html
|