diff --git a/views/challenges/partials/challenge.jade b/views/challenges/partials/challenge.jade index 618421c0c2e..404e932128a 100644 --- a/views/challenges/partials/challenge.jade +++ b/views/challenges/partials/challenge.jade @@ -2,13 +2,13 @@ .panel-heading Challenge: #{name} .panel.panel-body .responsive-container.animated.zoomIn.delay-1 - iframe(src='//player.vimeo.com/video/#{video}', frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='') + iframe(src='//player.vimeo.com/video/#{video}?autoplay=1', frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='') .animated.fadeIn.delay-2 h3 Instructions: for direction in directions p= direction - h3 Relevant Links (these open up in a new tab): + h3 Links You'll need: ol for link in links li @@ -18,24 +18,30 @@ .btn.btn-success.btn-large.btn-block.completed-challenge.hidden-element I've completed this challenge .ten-pixel-break .btn.btn-primary.btn-large.btn-block.skip-challenge.hidden-element I want to skip this challenge - #complete-dialog.modal - .modal-dialog.animated.zoomIn.fast-animation - .modal-content - .modal-header - a.close(href='#', data-dismiss='modal', aria-hidden='true') × - .text-center - h1.animated.zoomInDown Nicely done! - .animated.zoomInUp.delay-1 - span.landing-icon.ion-checkmark-circled.text-success - a.animated.fadeIn.delay-2.btn.btn-primary.btn-block(href='/curriculum', aria-hidden='true') Take me to my next challenge - #skip-dialog.modal - .modal-dialog.animated.zoomIn.fast-animation - .modal-content - .modal-header - a.close(href='#', data-dismiss='modal', aria-hidden='true') × - .text-center - h1.animated.zoomInDown No problem. - h2.animated.zoomInDown You can retry this challenge any time. - .animated.zoomInUp.delay-1 - span.landing-icon.ion-skip-forward.text-primary - a.animated.fadeIn.delay-2.btn.btn-primary.btn-block(href='/curriculum', aria-hidden='true') Take me to my next challenge \ No newline at end of file +.container + .row + .col-xs-12.col-sm-12.col-md-8 + a(href="https://twitter.com/intent/tweet?text=Hey%20@freecodecamp") Tweet us links to your projects. + a(href="http://blog.freecodecamp.com", target="_blank") Read our blog. + +#complete-dialog.modal + .modal-dialog.animated.zoomIn.fast-animation + .modal-content + .modal-header + a.close(href='#', data-dismiss='modal', aria-hidden='true') × + .text-center + h1.animated.zoomInDown Nicely done! + .animated.zoomInUp.delay-1 + span.landing-icon.ion-checkmark-circled.text-success + a.animated.fadeIn.delay-2.btn.btn-primary.btn-block(href='/curriculum', aria-hidden='true') Take me to my next challenge +#skip-dialog.modal + .modal-dialog.animated.zoomIn.fast-animation + .modal-content + .modal-header + a.close(href='#', data-dismiss='modal', aria-hidden='true') × + .text-center + h1.animated.zoomInDown No problem. + h2.animated.zoomInDown You can retry this challenge any time. + .animated.zoomInUp.delay-1 + span.landing-icon.ion-skip-forward.text-primary + a.animated.fadeIn.delay-2.btn.btn-primary.btn-block(href='/curriculum', aria-hidden='true') Take me to my next challenge \ No newline at end of file diff --git a/views/curriculum/curriculum.jade b/views/curriculum/curriculum.jade deleted file mode 100644 index fdf178df9a9..00000000000 --- a/views/curriculum/curriculum.jade +++ /dev/null @@ -1,22 +0,0 @@ -extends ../layout -block content - .row - .col-xs-12.col-sm-12.col-md-8 - .panel.panel-primary - .panel-heading Your Curriculum - .panel.panel-body - .responsive-container.animated.zoomIn.delay-1 - iframe(src='//player.vimeo.com/video/110039099?autoplay=1', frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='') - .animated.fadeIn.delay-2 - h3 Instructions: - p Here are a few quick tips: - ol - li Work through our challenges in order. Many challenges are self-graded. If you want our feedback,  - a(href="https://twitter.com/intent/tweet?text=Hey%20@freecodecamp") tweet a link to your project to @freecodecamp. - li If you get stuck, try working through our recommended (free) courses. They're super helpful, but totally optional. You can pair program on them, too. - li Challenge #2 will show you how to start a pair programming session. Pair program as much as possible. It's more fun, and you'll learn better that way. - p We're working to create more challenges. If you have an idea for a challenge you'd like us to implement,  - a(href="https://twitter.com/intent/tweet?text=Hey%20@freecodecamp") tweet it to @freecodecamp. - .col-sm-12.col-md-4.col-xs-12.animated.fadeInUp.delay-1 - include ./../partials/challenges - include ./../partials/courses \ No newline at end of file diff --git a/views/partials/courses.jade b/views/partials/courses.jade deleted file mode 100644 index a51699e1e9f..00000000000 --- a/views/partials/courses.jade +++ /dev/null @@ -1,31 +0,0 @@ -.panel.panel-primary - .panel-heading Recommended (Free) Courses - .panel-body - ol - li Web Design: - ul - li - a(href="/courses/codecademy-html-and-css-track") Codecademy's HTML & CSS track - li - a(href="/courses/code-school-discover-devtools-course") Code School's Discover DevTools - li - a(href="/courses/code-school-try-jquery-course") Code School's Try jQuery - li JavaScript and Computer Science: - ul - li - a(href="/courses/codecademy-javascript-track") Codecademy's JavaScript track - ul - li - a(href="/courses/harvard-introduction-to-computer-science-cs50-course") Harvard's CS50: Introduction to Computer Science - li - a(href="/courses/linux-command-line-tutorial") Linux Command Line tutorial - li - a(href="/courses/code-school-try-git-course") Code School's Try Git - li Full Stack JavaScript Development: - ul - li - a(href="/courses/code-school-real-time-with-node-js-course") Code School's Real-time web with Node.JS - li - a(href="/courses/code-school-shaping-up-with-angular-js-course") Code School's Shaping up with Angular.JS - li - a(href="/courses/m101js-mongodb-for-node-js-developers-course") MongoDB University's MongoDB for Node.js Developers \ No newline at end of file