All language subtitles for 031 Challenge 15 Solution_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,960 --> 00:00:04,230 All right so here comes the answer to the challenge. 2 00:00:04,390 --> 00:00:07,110 The answer is that inside our home. 3 00:00:07,270 --> 00:00:15,070 ejs instead a console logging the post title or whatever it may be, we want to be able to render it as 4 00:00:15,070 --> 00:00:22,500 HTML element. And we have to render each item inside the post array as an individual 5 00:00:22,530 --> 00:00:30,730 h1 and paragraph element just like what we've got up here with our home as our h1 and our startingContent 6 00:00:31,060 --> 00:00:33,490 being placed into paragraph elements. 7 00:00:33,730 --> 00:00:36,580 That's what we need to do down here. 8 00:00:36,580 --> 00:00:43,360 Some of you might have struggled with this because you try to keep the scriptlet tags in place and then 9 00:00:43,360 --> 00:00:46,120 try to add an h1 inside here. 10 00:00:46,390 --> 00:00:53,680 Well this is actually just pure bog standard h1. So it shouldn't go inside the Javascript scriptlet tags 11 00:00:53,980 --> 00:00:58,250 so let's delete those. Inside our forEach loop 12 00:00:58,270 --> 00:01:06,850 we know that we loop through each post inside our post array and each post needs an h1 for its title 13 00:01:07,270 --> 00:01:10,100 and a paragraph for its content. 14 00:01:10,390 --> 00:01:19,460 So let's go ahead and create an h1. And the content of our h1 is going to be the post in the singular 15 00:01:19,460 --> 00:01:28,190 form so each post .title. And then we're going to have a paragraph element and in our paragraph element 16 00:01:28,580 --> 00:01:32,360 we're going to add the post.content. 17 00:01:32,570 --> 00:01:39,350 So again make sure that these are the singular forms because we want to have a title and content created 18 00:01:39,380 --> 00:01:42,100 for each post inside the array. 19 00:01:42,110 --> 00:01:45,410 That's why we're using a for loop right? Now 20 00:01:45,440 --> 00:01:53,960 in order for this to work, we need to be able to put in the value of post.title into our h1 and 21 00:01:53,960 --> 00:02:00,880 the value of post.content into our paragraph. And we have to do that just as we did up here 22 00:02:00,980 --> 00:02:06,770 because these are going to be Javascript variables right? They're not just plain text that we want to show 23 00:02:07,160 --> 00:02:13,190 because if it looks like this then our home page would end up just having post.title post.content 24 00:02:13,190 --> 00:02:13,970 showing up 25 00:02:14,240 --> 00:02:16,650 and that's just plain text. 26 00:02:16,850 --> 00:02:22,280 So we have to use EJS tags that outputs the value into the template. 27 00:02:22,640 --> 00:02:26,750 Let's go ahead and add those tags around our variables. 28 00:02:27,080 --> 00:02:36,390 It's angle bracket percentage sign equals percentage sign angle bracket to close it off. 29 00:02:36,500 --> 00:02:43,340 All right so now that we've used the value tags let's go ahead and check and refresh our home page. 30 00:02:43,510 --> 00:02:51,310 And now you should be able to see the title and the body being rendered inside the paragraph and h1 31 00:02:51,350 --> 00:02:52,320 tags. 32 00:02:52,340 --> 00:02:59,450 And to further confirm that this is doing it for every single post, we can go ahead and add another post 33 00:02:59,630 --> 00:03:05,450 through our compose page. And you can see that when we update our home page we've got everything being 34 00:03:05,500 --> 00:03:12,260 rendered and we're looping through each and every blog post in our posts array to render it on the screen. 3755

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