Files
pelican-themes/syte/static/templates/github-view.html
2012-10-20 02:52:02 +02:00

47 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="profile github modal fade" id="github-profile">
{{#with user }}
<div class="profile-info">
<button class="close" data-dismiss="modal">×</button>
<a href="http://github.com/{{ login }}" class="profile-avatar">
<img src="http://gravatar.com/avatar/{{ gravatar_id }}" alt="{{name}}" />
</a>
<div class="profile-name">
<h2><a href="http://github.com/{{ login }}">{{ name }}</a></h2>
<h3><a href="http://github.com/{{ login }}">{{ login }}</a></h3>
</div>
<p class="profile-location-url">
{{#if location }}
<span>{{ location }}</span>
<span class="divider">·</span>
{{/if}}
{{#if blog }}
<span><a href="{{ blog }}">{{ blog }}</a></span>
{{/if}}
</p>
</div>
<ul class="profile-stats">
<li><a href="http://github.com/{{ login }}"><strong>{{ public_repos }}</strong> repos</a></li>
<li><a href="http://github.com/{{ login }}/following"><strong>{{ following }}</strong> following</a></li>
<li><a href="http://github.com/{{ login }}/followers"><strong>{{ followers }}</strong> followers</a></li>
</ul>
<div class="profile-info-footer">
<a href="http://github.com/{{ login }}" class="btn">Follow on Github</a>
</div>
{{/with}}
<ul class="profile-repos">
{{#each repositories}}
<li>
<a href="{{ html_url }}" class="profile-repo-name">{{ name }}</a>
<p class="profile-repo-text">
{{ description }}
</p>
<ul class="profile-repo-stats">
<li>{{ language }}</li>
<li><a href="{{ html_url }}/watchers" class="profile-watchers">{{ watchers }}</a></li>
<li><a href="{{ html_url }}/network" class="profile-forks">{{ forks }}</a></li>
</ul>
</li>
{{/each}}
</ul>
</div>