<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.3/css/bulma.css" />
    <link rel="stylesheet" href="../styles.css" />
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <nav>
      <h1><span class="index">15</span>Single-use components and inline templates</h1>
      <ul>
        <li><a href="../lesson14">Prev</a></li>
        <li><a href="../lesson16">Next</a></li>
      </ul>
    </nav>

    <div id="root" class="container">
      <progress-view inline-template>
        <div>
        <h2>Your progress through this course is {{ completionRate }}%</h2>
        <p><button v-if="completionRate < 100" @click="completionRate += 10">Increase completion</button></p>
        </div>
      </progress-view>
    </div>

    <script src="../lib/vue-2.1.3.js"></script>
    <script src="code.js"></script>
  </body>
</html>