Default case
This example shows a very typical situation: a normal slide and a link with the rel
attribute set to "parent"
.
As you can see, by clicking on an empty area of the viewport the slide disappears.
<article class="slide" id="photo-of-the-day">
<header>
<h2>Photo of the day</h2>
</header>
<nav>
<a href="#nowhere" rel="parent">My diary</a>
</nav>
<figure>
<img src="media/1.jpg" />
<figcaption>Into the woods</figcaption>
</figure>
</article>