diff options
author | Arnaud Bos <arnaud.bos@aeon-consulting.fr> | 2012-10-20 02:52:02 +0200 |
---|---|---|
committer | Arnaud Bos <arnaud.bos@aeon-consulting.fr> | 2012-10-20 02:52:02 +0200 |
commit | 3ffd14fa4da0ca71e1f97a070973e4994bae8f61 (patch) | |
tree | dd7fea1a54417fc5df25eb559870c6ad06019ef1 /syte/static/templates/github-view.html | |
parent | 01a8792a5116a305368d9d98fa366923086e0633 (diff) | |
download | pelican-themes-3ffd14fa4da0ca71e1f97a070973e4994bae8f61.tar.gz |
add client side social integration, use webassets
Diffstat (limited to 'syte/static/templates/github-view.html')
-rw-r--r-- | syte/static/templates/github-view.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/syte/static/templates/github-view.html b/syte/static/templates/github-view.html index c71ad38..9aa8c72 100644 --- a/syte/static/templates/github-view.html +++ b/syte/static/templates/github-view.html @@ -20,9 +20,9 @@ </p> </div> <ul class="profile-stats"> - <li><a href="http://github.com/{{ login }}"><strong>{{ public_repo_count }}</strong> repos</a></li> - <li><a href="http://github.com/{{ login }}/following"><strong>{{ following_count }}</strong> following</a></li> - <li><a href="http://github.com/{{ login }}/followers"><strong>{{ followers_count }}</strong> followers</a></li> + <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> @@ -31,14 +31,14 @@ <ul class="profile-repos"> {{#each repositories}} <li> - <a href="{{ url }}" class="profile-repo-name">{{ name }}</a> + <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="{{ url }}/watchers" class="profile-watchers">{{ watchers }}</a></li> - <li><a href="{{ url }}/network" class="profile-forks">{{ forks }}</a></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}} |