Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Intro to Java Web Development with Spark!
You have completed Intro to Java Web Development with Spark!
Preview
Let’s create a list of ideas and display them in our template. You will explore using the Model in our View that was passed to you from your Controller. MVC in action!
Learn more:
- Model View Controller - MVC - Pattern
- Post/Redirect/Get - PRG - Pattern
- We’ve got a course in the works on Functional Programming. Check back soon! For now, check out the official Oracle tutorial on Streams
The updated design from our design team!
body{
background-color: #eaeaea;
font-family: Arial;
}
a{
color: #2c89ba;
text-decoration: none;
}
a:hover{
color: #174963;
text-decoration: underline;
}
ul{
padding: 0;
}
li{
border-bottom: 1px solid #eaeaea;
list-style: none;
margin-bottom: 10px;
padding-bottom: 10px;
}
li:last-child{
border: 0;
margin: 0;
padding: 0;
}
.page{
background-color: #fff;
border-radius: 5px;
margin: 40px auto;
padding: 20px 40px 40px 40px;
width: 600px;
}
input{
border-radius: 5px;
border: 1px solid #ccc;
padding: 10px;
}
button{
background-color: #2c89ba;
border: none;
border-radius: 5px;
color: #fff;
padding: 10px;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
How are we gonna make sure
that we know the student?
0:01
I know, let's expose a link
in our if statement that
0:04
checks if we know their username.
0:07
Okay, so let's start out by
opening up our index.hbs page.
0:10
So that's this guy here, index.hbs.
0:14
And I'm going to get rid of this
TODO because we TO-DID that.
0:17
And so inside the if block here,
we want to add a hyperlink and
0:21
a hyperlink will do that
using an anchor tag.
0:26
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up