<slide title="MVC Architecture?">
<blurb>
MVC is the current buzz in web application architectures.  It comes from
event-driven desktop application design and doesn't fit into web application
design very well.  But luckily nobody really knows what MVC means, so we can
call our presentation layer separation mechanism MVC and move on.
</blurb>

<image filename="MVc.png" align="center"/>

<list>
<bullet type="dot">*Model* - Adds meaning and access to the data behind the application</bullet>
<bullet type="dot">*View*  - Renders the data from the model</bullet>
<bullet type="dot">*Controller* - Responds to events and makes changes to the view and model</bullet>
</list>

</slide>
