File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,14 @@ <h3> I'm a header</h3>
77 < p > Navigation:</ p >
88 < a href ='index.html '> Home</ a >
99 < a href ='me.html '> Me</ a >
10+ < a href ='http://www.kylegracey.com '> Portfolio</ a >
1011 </ div >
1112 < hr />
1213 < div >
1314 < h1 > Hello</ h1 >
1415< p >
1516 The time is now:
16- 2013-04-13 14:28:50 -0500
17+ 2013-04-13 14:33:25 -0500
1718</ p >
1819
1920< p >
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ <h3> I'm a header</h3>
77 < p > Navigation:</ p >
88 < a href ='index.html '> Home</ a >
99 < a href ='me.html '> Me</ a >
10+ < a href ='http://www.kylegracey.com '> Portfolio</ a >
1011 </ div >
1112 < hr />
1213 < div >
Original file line number Diff line number Diff line change 1010## Capture control+c to shut down the server
1111trap 'INT' do server . shutdown end
1212
13+ ## Adding from homework instructions
14+ server . mount_proc '/' do |req , res |
15+ res . body = 'Hello, world!'
16+ end
17+
1318## Start the server
1419server . start
Original file line number Diff line number Diff line change 1111 < p > Navigation:</ p >
1212 <%= link_to ( 'Home' , 'index.html' ) %>
1313 <%= link_to ( 'Me' , 'me.html' ) %>
14+ <%= link_to ( 'Portfolio' , 'http://www.kylegracey.com' ) %>
1415 </ div >
1516 < hr />
1617 < div >
You can’t perform that action at this time.
0 commit comments