Skip to content

Commit

Permalink
layout fine tuning, added robots.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkiessling committed Apr 17, 2011
1 parent 4573cb4 commit e538c11
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 15 deletions.
41 changes: 26 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,6 @@
margin-right: 12px;
}

pre {
background-color: #eee;
padding: 16px;
}

p {
text-align: justify;
font-size: 110%;
line-height: 150%;
}

h1 {
margin-left: -63px;
margin-top: -109px;
Expand Down Expand Up @@ -84,6 +73,18 @@
font-weight: normal;
}

p {
text-align: justify;
font-size: 110%;
line-height: 150%;
}

pre {
background-color: #FFFF99;
border: 1px solid black;
padding: 16px;
}

ul li {
margin-bottom: 12px;
font-size: 110%;
Expand Down Expand Up @@ -353,7 +354,7 @@ <h3>The use cases</h3>
When requesting http://<em>domain</em>/upload, the
user should be able to upload an image file from
his computer, which is then displayed in his
browser.
browser
</li>
</ul>
</p>
Expand Down Expand Up @@ -396,21 +397,21 @@ <h3>The application stack</h3>
The router probably should also treat any incoming
POST data and give it to the request handlers in
a convenient form, thus we need a <strong>request
data handler</strong>.
data handler</strong>
</li>
<li>
We not only want to handle requests for URLs, we
also want to display content when these URLs are
requested, which means we need some kind of
<strong>view logic</strong> the request handlers
can use in order to send content to the user's
browser.
browser
</li>
<li>
Last but not least, the user will be able to upload
images, so we are going to need an
<strong>upload handler</strong> to take care of the
details.
details
</li>
</ul>
</p>
Expand Down Expand Up @@ -805,8 +806,18 @@ <h4>How our server handles requests</h4>
request, which is why we don't use the <em>request</em>
object at all.
</p>


</div>









<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'nodebeginner';
Expand Down
2 changes: 2 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Allow: /

0 comments on commit e538c11

Please sign in to comment.