diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-07-09 07:44:38 -0700 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-07-09 07:44:38 -0700 |
commit | 5c841277a96336f85ce5f5944e92e4ceec2a89f1 (patch) | |
tree | dae04e7396f1f0a3e72d4e4b62545c4030a7193c /syte/static/templates/dribbble-view.html | |
parent | 8363d9701c4c5ab794977c37c4428455e68db78b (diff) | |
parent | 0727752c19ddf32acd3623ded81131f0a8233079 (diff) | |
download | pelican-themes-5c841277a96336f85ce5f5944e92e4ceec2a89f1.tar.gz |
Merge pull request #42 from samrat/master
Added new theme, syte
Diffstat (limited to 'syte/static/templates/dribbble-view.html')
-rw-r--r-- | syte/static/templates/dribbble-view.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/syte/static/templates/dribbble-view.html b/syte/static/templates/dribbble-view.html new file mode 100644 index 0000000..259b1cd --- /dev/null +++ b/syte/static/templates/dribbble-view.html @@ -0,0 +1,46 @@ +<div class="profile dribbble modal fade-large" id="dribbble-profile"> + {{#with user}} + <div class="profile-info"> + <button class="close" data-dismiss="modal">×</button> + <a href="http://dribbble.com/{{ username }}" class="profile-avatar"> + <img src="{{ avatar_url }}" alt="{{name}}" /> + </a> + <div class="profile-name"> + <h2><a href="http://dribbble.com/{{ username }}">{{ name }}</a></h2> + <h3><a href="http://dribbble.com/{{ username }}">@{{ username}}</a></h3> + </div> + <p class="profile-location-url"> + {{#if location }} + <span>{{ location }}</span> + <span class="divider">·</span> + {{/if}} + {{#if website_url }} + <span><a href="{{ website_url }}">{{ website_url }}</a></span> + {{/if}} + </p> + <a href="http://dribbble.com/{{ username }}" class="btn">Follow on Dribbble</a> + </div> + <ul class="profile-stats"> + <li><a href="http://dribbble.com/{{ username }}"><strong>{{ shots_count }}</strong> shots</a></li> + <li><a href="http://dribbble.com/{{ username }}" class="shots-likes-received"><strong>{{ likes_received_count }}</strong> likes received</a></li> + <li><a href="http://dribbble.com/{{ username }}" class="shots-likes-given"><strong>{{ likes_count }}</strong> likes given</a></li> + <li><a href="http://dribbble.com/{{ username }}/following"><strong>{{ following_count }}</strong> following</a></li> + <li><a href="http://dribbble.com/{{ username }}/followers"><strong>{{ followers_count }}</strong> followers</a></li> + </ul> + {{/with}} + <ul class="profile-shots"> + {{#each shots}} + <li> + <a href="{{ url }}" class="profile-shot"> + <img src="{{ image_url }}" alt="{{ title }}" /> + </a> + <span class="profile-shot-title">{{ title }}</span> + <ul class="profile-shot-stats"> + <li><a href="" class="profile-watchers">{{ views_count }}</a></li> + <li><a href="" class="profile-comments">{{ comments_count }}</a></li> + <li><a href="" class="profile-likes">{{ likes_count }}</a></li> + </ul> + </li> + {{/each}} + </ul> +</div> |