All language subtitles for 005 Challenge 2_en

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French Download
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,420 --> 00:00:01,050 All right guys. 2 00:00:01,050 --> 00:00:02,570 Here comes the challenge 3 00:00:02,580 --> 00:00:05,190 number 2. Are you ready? 4 00:00:05,190 --> 00:00:05,520 All right. 5 00:00:05,520 --> 00:00:13,230 So in the app.js when you first downloaded it we had three of these constants at the top and 6 00:00:13,230 --> 00:00:18,330 they just contain a whole bunch of Lorem Ipsum and randomly generated text. 7 00:00:18,450 --> 00:00:25,200 But let's say that this is some content that's in our server and we want to be able to deliver it over 8 00:00:25,320 --> 00:00:27,900 to our home page using EJS. 9 00:00:27,900 --> 00:00:31,040 Now this challenge is about doing exactly that. 10 00:00:31,110 --> 00:00:38,070 How much can you make this home starting content be displayed inside our home page inside a paragraph 11 00:00:38,070 --> 00:00:45,540 tag so that when you head over to our home page on localhost:3000 you not only get the h1 that says 12 00:00:45,540 --> 00:00:52,420 home, but also the same text that's held inside that constant which is home starting content? 13 00:00:52,440 --> 00:00:56,890 So that's the challenge. Pause the video now and give it a go. 14 00:01:00,240 --> 00:01:00,620 All right. 15 00:01:00,630 --> 00:01:02,830 So currently inside home.ejs 16 00:01:02,980 --> 00:01:06,680 all that we have is an h1 tag. 17 00:01:06,990 --> 00:01:14,160 Now in order to complete this challenge we need to also have a paragraph element in here. And the text 18 00:01:14,220 --> 00:01:21,420 that's going to go into that paragraph element is going to be the text that's inside home starting content. 19 00:01:21,420 --> 00:01:27,720 So you'll need to render that variable using the correct EJS tag in order to see the content in this 20 00:01:27,720 --> 00:01:28,830 page. 21 00:01:28,830 --> 00:01:34,860 So with that hint and maybe a little bit of googling around what we just talked about, see if you 22 00:01:34,860 --> 00:01:36,820 can complete the challenge now. 23 00:01:37,230 --> 00:01:37,570 All right. 24 00:01:37,570 --> 00:01:39,530 Here's my second hint. 25 00:01:40,660 --> 00:01:46,810 So we know that we need to have a paragraph element in here. And in between the paragraph element is the 26 00:01:46,810 --> 00:01:50,500 text that we want to show up on our Web page. 27 00:01:50,500 --> 00:01:57,710 So the text that we want is going to be rendered dynamically using EJS. And to do that we need the 28 00:01:57,710 --> 00:01:59,960 EJS tag that does that. 29 00:02:00,280 --> 00:02:07,510 So if we head over to the EJS docs, you can see the tag that we've been using so far which is the one 30 00:02:07,510 --> 00:02:14,320 that outputs the value of a variable into the template. And it's in fact even the one that they show 31 00:02:14,320 --> 00:02:22,120 in the header. And in between that tag is going to be the name of the variable that you passed over to 32 00:02:22,120 --> 00:02:23,750 the EJS template. 33 00:02:24,160 --> 00:02:28,360 So with that hint see if you can now complete the challenge. 34 00:02:29,920 --> 00:02:30,430 OK. 35 00:02:30,440 --> 00:02:35,650 This is hint number 3. Inside this paragraph tag 36 00:02:35,820 --> 00:02:42,210 let's add that EJS tag that we showed you earlier on the one with a angle, a percentage sign and 37 00:02:42,210 --> 00:02:48,750 an equal sign in the closing part of the tag is just a percentage sign and an angle bracket. 38 00:02:48,810 --> 00:02:55,650 Now in between these two parts is going to be in the name of the variable that we're going to pass into 39 00:02:55,650 --> 00:02:56,180 here. 40 00:02:56,430 --> 00:03:01,220 So let's give it a name. Let's call it just starting content. 41 00:03:02,570 --> 00:03:07,980 And now we need to pass over a variable with that name to our home. 42 00:03:08,010 --> 00:03:11,370 ejs from our server, our app.js. 43 00:03:12,210 --> 00:03:17,000 So see if with that hint you can now complete the challenge. 44 00:03:17,950 --> 00:03:18,200 All right. 45 00:03:18,220 --> 00:03:21,460 This is my fourth and final hint. 46 00:03:21,460 --> 00:03:28,270 Currently our res.render method is only rendering the home.ejs page. 47 00:03:28,390 --> 00:03:35,610 If we wanted to pass in a variable, we would add a comma and then we would pass over a Javascript object. 48 00:03:35,800 --> 00:03:42,850 So we know that Javascript objects are a key value pairs that are inside a set of curly braces. 49 00:03:43,270 --> 00:03:47,450 So you need to provide a key and a value. 50 00:03:47,710 --> 00:03:51,140 The key is going to be the variable that you'll be able to tap into 51 00:03:51,160 --> 00:03:52,270 inside your home. 52 00:03:52,480 --> 00:03:59,710 ejs and the value is whatever it is that you want to pass over that comes from this current page which 53 00:03:59,710 --> 00:04:01,300 is the app.js. 54 00:04:01,660 --> 00:04:07,660 Now with my final hint see if you can now finally complete the challenge. 5252

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.