aboutsummaryrefslogtreecommitdiffstats
path: root/syte/static/templates/google-view.html
blob: 0a2e0bee3cf4e9a910c101dda7eeea9dfafe6f26 (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
<div class="profile google modal fade" id="google-profile">
  {{#with user}}
  <div class="profile-info">
    <button class="close" data-dismiss="modal">×</button>
    <a href="{{ url }}" class="profile-avatar">
      <img src="{{ image.url }}" alt="{{ displayName }}" />
    </a>
    <div class="profile-name">
      <h2><a href="{{ url }}">{{ displayName }}</a></h2>
    </div>
    {{#if tagline}}
    <p class="profile-description">{{{ tagline }}}</p>
    {{/if}}
    <p class="profile-location-url">
      {{#if placesLived }}
      <span>{{ placesLived.0.value }}</span>
      <span class="divider">·</span>
      {{/if}}
    </p>
  </div>
  <ul class="profile-stats">
  </ul>
  <div class="profile-info-footer">
    <a href="{{ url }}" class="btn">Follow on Google+</a>
  </div>
  {{/with}}
  <ul class="profile-tweets">
    {{#each posts}}
      <li>
        <a href="{{ url }}" class="tweet-title">
          <img src="{{ actor.image.url }}" alt="{{ actor.displayName }}" />
          <strong>{{ actor.displayName }}</strong>
        </a>
        <p class="tweet-text">
        {{{ title }}}
        </p>
        <ul class="profile-repo-stats tweet-date" style="padding-left: 30px; font-size: 12px;">
          <li>{{ published }}</li>
          <li><a class="profile-plusoners">{{ plusoners }}</a></li>
          <li><a class="profile-resharers">{{ resharers }}</a></li>
        </ul>
      </li>
    {{/each}}
  </ul>
</div>