Skip to content
Snippets Groups Projects
dashboard.html 4.16 KiB
Newer Older
Matthew Mongeau's avatar
Matthew Mongeau committed
<%inherit file="main.html" />

<%namespace name='static' file='static_content.html'/>

<section class="container">
  <section class="dashboard">

    <section class="sidebar">
      <header class="profile">
        <section class="user-info">
          <div class="avatar">
            <img src="${static.url('images/profile.jpg')}" />
          </div>
          <section class="info">
            <h2>${ user.username }</h2>
Matthew Mongeau's avatar
Matthew Mongeau committed
            <ul>
              <li>
                <h3>Email: <span>${ user.email }</span></h3>
Matthew Mongeau's avatar
Matthew Mongeau committed
              </li>
              <li>
                <h3>Location: <span>${ user.profile.location }</span></h3>
Matthew Mongeau's avatar
Matthew Mongeau committed
              </li>
              <li>
                <h3>Language: <span>${ user.profile.language }</span></h3>
Matthew Mongeau's avatar
Matthew Mongeau committed
              </li>
            </ul>
          </section>
        </section>
        <section class="meta-info">
        </section>
      </header>
    </section>

      <nav class="course-toggle">
Matthew Mongeau's avatar
Matthew Mongeau committed
        <ol class="filters">
          <li class="selected">
            <h2>All <span class="count">3</span></h2>
          </li>
          <li>
            <h2>Current <span class="count">3</span></h2>
          </li>
          <li>
            <h2>Upcoming <span class="count">0</span></h2>
          </li>
          <li>
            <h2>Completed <span class="count">0</span></h2>
          </li>
        </ol>
      </nav>

Matthew Mongeau's avatar
Matthew Mongeau committed
        <a href="/info">
Matthew Mongeau's avatar
Matthew Mongeau committed
          <div class="cover">
            <div class="shade"></div>
            <div class="arrow"></div>
            <img src="${static.url('images/history.png')}" />
          </div>
          <section class="info">
            <hgroup>
              <h2>18th Century History</h2>
              <p>Adam Smith, Harvard University</p>
            </hgroup>
            <div class="edit">options</div>
            <section class="meta">
              <div class="complete">
                <p>60% complete</p>
              </div>
              <div class="progress">
                <div class="meter">
                  <div class="meter-fill"></div>
                </div>
              </div>
              <div class="end-date">
                <p>End date: <time>6/10/12</time></p>
              </div>
            </section>
          </section>
        </a>
      </article>

Matthew Mongeau's avatar
Matthew Mongeau committed
        <a href="/info">
Matthew Mongeau's avatar
Matthew Mongeau committed
          <div class="cover">
            <div class="shade"></div>
            <div class="arrow"></div>
            <img src="${static.url('images/math.png')}" />
          </div>
          <section class="info">
            <hgroup>
              <h2>Linear Algebra</h2>
              <p>Adam Smith, Harvard University</p>
            </hgroup>
            <div class="edit">options</div>
            <section class="meta">
              <div class="complete">
                <p>60% complete</p>
              </div>
              <div class="progress">
                <div class="meter">
                  <div class="meter-fill"></div>
                </div>
              </div>
              <div class="end-date">
                <p>End date: <time>6/10/12</time></p>
              </div>
            </section>
          </section>
        </a>
      </article>

Matthew Mongeau's avatar
Matthew Mongeau committed
        <a href="/info">
Matthew Mongeau's avatar
Matthew Mongeau committed
          <div class="cover">
            <div class="shade"></div>
            <div class="arrow"></div>
            <img src="${static.url('images/python.png')}" />
          </div>
          <section class="info">
            <hgroup>
              <h2>CS 102 Python</h2>
              <p>Adam Smith, Harvard University</p>
            </hgroup>
            <div class="edit">options</div>
            <section class="meta">
              <div class="complete">
                <p>60% complete</p>
              </div>
              <div class="progress">
                <div class="meter">
                  <div class="meter-fill"></div>
                </div>
              </div>
              <div class="end-date">
                <p>End date: <time>6/10/12</time></p>
              </div>
            </section>
          </section>
        </a>
      </article>
    </section>

  </section>
</section>