-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtutorials.html
60 lines (51 loc) · 1.8 KB
/
tutorials.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: default
---
<div id="tutorials">
<h3>Concepts</h3>
<ul>
<li>
<a href="/tutorials/routes">Defining pages</a>
<p>An in depth look at everything you can do with routes and how you define pages
in Noir.</p>
</li>
<li>
<a href="/tutorials/html">Generating HTML</a>
<p>Your crash course on using Hiccup and partials to generate HTML, as well as a
note on alternative templating libraries.</p>
</li>
<li>
<a href="/tutorials/forms">Forms and input</a>
<p>Websites wouldn't be very interesting if they didn't allow for interaction.
This is your primer on getting and validating input.</p>
</li>
<li>
<a href="/tutorials/sessions">Sessions and cookies</a>
<p>It's time to talk about how we manage state in Noir through sessions and
cookies.</p>
</li>
<li>
<a href="/tutorials/middleware">Middleware</a>
<p>Sometimes you need to mess around with the request and response maps.
Middleware is how you do it.</p>
</li>
<li>
<a href="/tutorials/others">Using Noir with ...</a>
<p>This is a look into how you can use Noir with other tools such as lein-ring
and lein-beanstalk.</p>
</li>
</ul>
<h3>Examples</h3>
<ul>
<li>
<a href="https://github.com/ibdknox/Noir-blog">Noir Blog</a>
<p>A completely functional blog written from the ground up in Noir</p>
</li>
<li>
<a href="http://thecomputersarewinning.com/post/clojure-heroku-noir-mongo">Noir
on Heroku</a>
<p>A simple example of getting Noir up on Heroku with a connection to MongoDB as
well - by Ignacio Thayer.</p>
</li>
</ul>
</div>