<slide>
<title>Linking Articles and Views</title>

<blurb>Article collection:</blurb>
<example><![CDATA[{ _id: 4,
  name: "Derick's MongoDB Tour Wrap-up",
  date: "2012-10-01",
  comments: [
    { name: "Adam", text: "It was great having you in Sou..." },
    { name: "Jake", text: "I don't think you can ever re..." },
  ],
}
{ _id: 7,
  name: "What is PHP doing?",
  date: "2012-07-13",
  comments: [
    { name: "Chris", text: "The .gdbinit trick was somethi..." },
  ]
}]]></example>
<blurb>Views collection:</blurb>
<example><![CDATA[
{ article_id: 4, time: 1350297458, ip: "192.168.42.101" }
{ article_id: 4, time: 1350298912, ip: "192.168.42.102" }
{ article_id: 7, time: 1350297458, ip: "192.168.42.101" }
]]></example>
</slide>
