summaryrefslogtreecommitdiff
path: root/views/pages/profile.ejs
blob: 0b083425115d8c26f13c4d0f2d7c53a8119c4c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<% include ../partials/header %>

<div class="subtitle">
  <a href="/">&lt; Home</a> <span class="edit_profile">&middot; <a href="">Edit Profile</a></span>
</div>

<div id="profile_rapper">

  <div id="profile">
    <div class="r">
      <div class="left">
        <img>
        <table class="profile_meta">
          <script type="text/html" class="template">
            <tr>
              <td>{{label}}</td>
              <td>{{value}}</td>
            </tr>
          </script>
        </table>
      </div>

      <div class="right">
        <% include ../partials/gallery %>
        <div class="r">
          <div class="left">
            <% include ../partials/files %>
          </div>
          <% include ../partials/threads %>
        </div>
      </div>
  </div>

</div>

<% include ../partials/footer %>